Merge pull request #10394 from anssijun/aws-ebs-retry-spot-instance-tagging

Fix retry logic in AWS spot instance tagging
pull/10395/head
Megan Marsh 5 years ago committed by GitHub
commit eecac40d77
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -406,7 +406,7 @@ func (s *StepRunSpotInstance) Run(ctx context.Context, state multistep.StateBag)
}
// Retry creating tags for about 2.5 minutes
err = retry.Config{Tries: 11, ShouldRetry: func(error) bool {
err = retry.Config{Tries: 11, ShouldRetry: func(err error) bool {
if awserrors.Matches(err, "InvalidInstanceID.NotFound", "") {
return true
}

Loading…
Cancel
Save