Skip to content

Commit

Permalink
fixup: cmci int tests retries and program install timeouts
Browse files Browse the repository at this point in the history
  • Loading branch information
andrewhughes101 committed Oct 24, 2024
1 parent f6a0984 commit 32dae28
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -227,8 +227,8 @@
resources:
filter:
PROGRAM: "{{ program }}"
retries: 3 # May take a while to install, so give it a chance!
until: result is not failed
retries: 5 # May take a while to install, so give it a chance!
until: result.cpsm_response != "NODATA"
register: result
failed_when: false

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -227,8 +227,8 @@
resources:
filter:
PROGRAM: "{{ program }}"
retries: 3 # May take a while to install, so give it a chance!
until: result is not failed
retries: 5 # May take a while to install, so give it a chance!
until: result.cpsm_response != "NODATA"
register: result
failed_when: false

Expand Down

0 comments on commit 32dae28

Please sign in to comment.