port: Fix parameter parsing in bucket retryer #416

Merged
alexvanin merged 1 commits from alexvanin/frostfs-s3-gw:fix/398-port-0-29 into support/v0.29 2024-07-03 11:14:39 +00:00
1 changed files with 1 additions and 1 deletions

View File

@ -939,7 +939,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) {