Merge "Reduce frequency of task retries"

This commit is contained in:
Zuul 2022-01-14 19:24:31 +00:00 committed by Gerrit Code Review
commit c8dea60ddb
1 changed files with 2 additions and 2 deletions

View File

@ -41,8 +41,8 @@
jid: "{{ puppet_host_async_result.ansible_job_id }}" jid: "{{ puppet_host_async_result.ansible_job_id }}"
register: puppet_host_outputs register: puppet_host_outputs
until: puppet_host_outputs.finished until: puppet_host_outputs.finished
retries: 1200 retries: 360
delay: 3 delay: 10
failed_when: failed_when:
- (not puppet_host_outputs.finished) or (puppet_host_outputs.rc is defined and puppet_host_outputs.rc not in [0, 2]) - (not puppet_host_outputs.finished) or (puppet_host_outputs.rc is defined and puppet_host_outputs.rc not in [0, 2])
when: when: