[#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:
Alexey Vanin 2024-07-03 13:42:24 +03:00
parent 465eaa816a
commit f86b82351a

View file

@ -796,7 +796,7 @@ func (h *handler) putBucketSettingsRetryer() aws.RetryerV2 {
return retry.NewStandard(func(options *retry.StandardOptions) { return retry.NewStandard(func(options *retry.StandardOptions) {
options.MaxAttempts = h.cfg.RetryMaxAttempts() options.MaxAttempts = h.cfg.RetryMaxAttempts()
options.MaxBackoff = h.cfg.RetryMaxBackoff() options.MaxBackoff = h.cfg.RetryMaxBackoff()
if h.cfg.RetryStrategy() == RetryStrategyConstant { if h.cfg.RetryStrategy() == RetryStrategyExponential {
options.Backoff = retry.NewExponentialJitterBackoff(options.MaxBackoff) options.Backoff = retry.NewExponentialJitterBackoff(options.MaxBackoff)
} else { } else {
options.Backoff = retry.BackoffDelayerFunc(func(int, error) (time.Duration, error) { options.Backoff = retry.BackoffDelayerFunc(func(int, error) (time.Duration, error) {