Skip to content

Commit

Permalink
Merge pull request #16580 from hakman/aws_retry_adaptive
Browse files Browse the repository at this point in the history
aws: Experiment with Adaptive retry mode
  • Loading branch information
k8s-ci-robot committed May 19, 2024
2 parents a7d5f83 + 9c9afb1 commit fc91085
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion upup/pkg/fi/cloudup/awsup/aws_cloud.go
Original file line number Diff line number Diff line change
Expand Up @@ -268,7 +268,7 @@ func loadAWSConfig(ctx context.Context, region string) (aws.Config, error) {
awsconfig.WithClientLogMode(aws.LogRetries),
awsconfig.WithLogger(awsLogger{}),
awsconfig.WithRetryer(func() aws.Retryer {
return retry.NewStandard()
return retry.NewAdaptiveMode()
}),
}

Expand Down

0 comments on commit fc91085

Please sign in to comment.