We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
aws-sdk-go/aws/client/default_retryer.go
Line 52 in 14a64cf
When Request.RetryCount=14, the first "if" condition applies and set the retryCount to 13. The next retry is more than one hour later.
See https://play.golang.org/p/vzNJVpLGHZ
The text was updated successfully, but these errors were encountered:
Hello @fly1028, thank you for reaching out to us. Normal retries are capped at roughly ~5minutes. And it looks like throttles ~5 minutes.
Please see my example
edit: nvm, there is an issue with the if statement not looking that it is throttled first.
Sorry, something went wrong.
Thanks for finding this @fly1028. I have a PR, #1654, for this. Please let us know if you have any other issues with this!
Thank you @xibz !
Successfully merging a pull request may close this issue.
aws-sdk-go/aws/client/default_retryer.go
Line 52 in 14a64cf
When Request.RetryCount=14, the first "if" condition applies and set the retryCount to 13.
The next retry is more than one hour later.
See
https://play.golang.org/p/vzNJVpLGHZ
The text was updated successfully, but these errors were encountered: