forked from TrueCloudLab/rclone
b2: set maximum backoff to 5 Minutes #597
This commit is contained in:
parent
f0434789cf
commit
57f8f1ec92
1 changed files with 1 additions and 1 deletions
2
b2/b2.go
2
b2/b2.go
|
@ -38,7 +38,7 @@ const (
|
|||
testModeHeader = "X-Bz-Test-Mode"
|
||||
retryAfterHeader = "Retry-After"
|
||||
minSleep = 10 * time.Millisecond
|
||||
maxSleep = 2 * time.Second
|
||||
maxSleep = 5 * time.Minute
|
||||
decayConstant = 1 // bigger for slower decay, exponential
|
||||
maxParts = 10000
|
||||
maxVersions = 100 // maximum number of versions we search in --b2-versions mode
|
||||
|
|
Loading…
Reference in a new issue