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
A/C:
Here is an example of task with retries that was broken, and PR with fix:
TASK [Tag EC2 instance] ******************************************************** ... fatal: [localhost]: FAILED! => { ... "response_metadata": { ... "retry_attempts": 0 } }
We might need some eSRE education around this issue.
Here are a list of other broken retries that probably need to be fixed:
$ pip install yq $ find -name '*.yml' | while read -r path; do output=$(< $path yq '.. | select(.retries? != null and (.register == null or .until == null))'); if [[ -n "$output" ]]; then echo "$path"; fi done ./playbooks/continuous_delivery/launch_instance.yml ./playbooks/roles/mongo_3_6/tasks/main.yml ./playbooks/roles/mongo_2_6/tasks/main.yml ./playbooks/roles/mongo_4_2/tasks/main.yml ./playbooks/roles/redis/tasks/main.yml ./playbooks/roles/ad_hoc_reporting/tasks/main.yml ./playbooks/roles/mongo_4_4/tasks/main.yml ./playbooks/roles/mongo_3_2/tasks/main.yml ./playbooks/roles/mongo_4_0/tasks/main.yml ./playbooks/roles/mongo_3_4/tasks/main.yml ./playbooks/roles/mongo_client/tasks/main.yml ./playbooks/roles/python/tasks/main.yml
The text was updated successfully, but these errors were encountered:
Fixed with openedx-unsupported/configuration#7049
Sorry, something went wrong.
rgraber
No branches or pull requests
A/C:
Here is an example of task with retries that was broken, and PR with fix:
We might need some eSRE education around this issue.
Here are a list of other broken retries that probably need to be fixed:
The text was updated successfully, but these errors were encountered: