Skip to content

Commit 0750992

Browse files
author
Kevin Smith
committed
Tweaks to the backoff interval schedule
1 parent 4759f9f commit 0750992

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

relay/bus/backoff.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@ import (
77
)
88

99
// intervalTable is the schedule of backoff intervals in seconds
10-
var intervalTable = []int{5, 5, 10, 10,
11-
30, 30, 60, 60, 90, 90}
10+
var intervalTable = []int{5, 5, 5, 15, 15, 15,
11+
30, 30, 30, 60, 60, 60, 90}
1212
var intervals = byte(len(intervalTable) - 1)
1313

1414
// Backoff implements a basic increasing backoff strategy

0 commit comments

Comments
 (0)