-
Notifications
You must be signed in to change notification settings - Fork 342
New issue
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
Set the back-off delay to 5 minutes before re-deployment #1856
Conversation
Build succeeded. ✔️ ansible-galaxy-importer SUCCESS in 5m 23s |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Please clean up the whitespace to fix the failing tests.
See for example: https://github.com/ansible-collections/amazon.aws/actions/runs/6872685446/job/18695465378?pr=1856
ERROR: Found 2 pep8 issue(s) which need to be resolved:
ERROR: plugins/modules/cloudformation.py:190:25: W291: trailing whitespace
ERROR: plugins/modules/cloudformation.py:191:1: W293: blank line contains whitespace
done |
Build succeeded. ✔️ ansible-galaxy-importer SUCCESS in 4m 41s |
Hello @theputta, thanks for kickstarting the documentation pull requests. Consolidating all the documentation example-related modifications into a single pull request would be more convenient, rather than having them scattered across multiple PRs. It would be appreciated if you could ensure that all the added examples have been verified. Once you create a single PR with these changes, we will review and validate them on our end. To streamline the process, we plan to close the other PRs, leaving this one open for you to include the changes. Let us know if this approach suits you. |
Please rebase the PR. |
Coming back to this PR: the description of this example is a little misleading. As the code is written today, the retries only apply to "transient" errors (things like API rate limits). It won't retry something that simply "failed". I think it's better not to merge this change. |
SUMMARY
backoff_delay parameter is set to 5 minutes before attempting the next retry. This can be useful to avoid immediate repeated API requests in case of throttling.
ISSUE TYPE