Skip to content
This repository has been archived by the owner on Aug 3, 2023. It is now read-only.

Commit

Permalink
fix retries on download
Browse files Browse the repository at this point in the history
Signed-off-by: anastasia prasolova <[email protected]>
  • Loading branch information
aprasolova committed Sep 19, 2022
1 parent 07f29cc commit cfd55a9
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion tasks/binary.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,4 +13,4 @@
register: download_result
retries: 5
delay: 5
until: download_result.status_code != '200'
until: not download_result.failed
2 changes: 1 addition & 1 deletion tasks/cli.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,4 +12,4 @@
register: download_result
retries: 5
delay: 5
until: download_result.status_code != '200'
until: not download_result.failed

0 comments on commit cfd55a9

Please sign in to comment.