Skip to content

Commit

Permalink
Increase retries
Browse files Browse the repository at this point in the history
Signed-off-by: Alina Buzachis <[email protected]>
  • Loading branch information
alinabuzachis committed May 20, 2022
1 parent 000ab6e commit 80879df
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion tests/integration/targets/aws_s3/tasks/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -105,13 +105,18 @@
register: test_async
async: 30
poll: 0

- name: debug result
debug:
var: test_async
verbosity: 4

- name: ensure it completed
async_status:
jid: "{{ test_async.ansible_job_id }}"
register: status
until: status is finished
retries: 10
retries: 30

- name: test put with overwrite=different and unmodified object
aws_s3:
Expand Down

0 comments on commit 80879df

Please sign in to comment.