forked from TrueCloudLab/frostfs-s3-gw
[#398] Fix parameter parsing in bucket retryer
RetryStrategyExponential should use jitter backoff instead of constant delay function Signed-off-by: Alex Vanin <a.vanin@yadro.com>
This commit is contained in:
parent
465eaa816a
commit
f86b82351a
1 changed files with 1 additions and 1 deletions
|
@ -796,7 +796,7 @@ func (h *handler) putBucketSettingsRetryer() aws.RetryerV2 {
|
|||
return retry.NewStandard(func(options *retry.StandardOptions) {
|
||||
options.MaxAttempts = h.cfg.RetryMaxAttempts()
|
||||
options.MaxBackoff = h.cfg.RetryMaxBackoff()
|
||||
if h.cfg.RetryStrategy() == RetryStrategyConstant {
|
||||
if h.cfg.RetryStrategy() == RetryStrategyExponential {
|
||||
options.Backoff = retry.NewExponentialJitterBackoff(options.MaxBackoff)
|
||||
} else {
|
||||
options.Backoff = retry.BackoffDelayerFunc(func(int, error) (time.Duration, error) {
|
||||
|
|
Loading…
Reference in a new issue