Skip to content

Commit

Permalink
fix: increase IMDS retries (awslabs#2112)
Browse files Browse the repository at this point in the history
cartermckinnon authored Jan 8, 2025
1 parent 1157902 commit 3bbee38
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion nodeadm/internal/aws/imds/imds.go
Original file line number Diff line number Diff line change
@@ -15,7 +15,7 @@ func init() {
Client = imds.New(imds.Options{
DisableDefaultTimeout: true,
Retryer: retry.NewStandard(func(so *retry.StandardOptions) {
so.MaxAttempts = 15
so.MaxAttempts = 60
so.MaxBackoff = 1 * time.Second
so.Retryables = append(so.Retryables,
&retry.RetryableHTTPStatusCode{

0 comments on commit 3bbee38

Please sign in to comment.