Skip to content

Commit d924596

Browse files
gbn: set default resend & handshake timeouts to 1s
1 parent 8b21c76 commit d924596

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

gbn/timeout_manager.go

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,9 @@ import (
99
)
1010

1111
const (
12-
defaultHandshakeTimeout = 100 * time.Millisecond
13-
defaultResendTimeout = 100 * time.Millisecond
14-
minimumResendTimeout = 100 * time.Millisecond
12+
defaultHandshakeTimeout = 1000 * time.Millisecond
13+
defaultResendTimeout = 1000 * time.Millisecond
14+
minimumResendTimeout = 1000 * time.Millisecond
1515
defaultFinSendTimeout = 1000 * time.Millisecond
1616
defaultResendMultiplier = 5
1717
defaultTimeoutUpdateFrequency = 100

0 commit comments

Comments
 (0)