diff options
author | Matt Davis <mdavis@ansible.com> | 2017-05-09 20:22:29 +0200 |
---|---|---|
committer | Matt Davis <mdavis@ansible.com> | 2017-05-09 20:22:29 +0200 |
commit | ead23783bea8e71c194172a1bf56188f90e45c09 (patch) | |
tree | 1d0197942c7e06b577dc6c1f76f2f00464390ed4 /test/integration/targets/win_async_wrapper | |
parent | ec2_elb_lb: allow elb scheme to be updated by restarting the resource - fixes... (diff) | |
download | ansible-ead23783bea8e71c194172a1bf56188f90e45c09.tar.xz ansible-ead23783bea8e71c194172a1bf56188f90e45c09.zip |
slightly increase win_async_wrapper fire and forget sleeptime
* should fix Shippable timeouts when AWS CPU credits are low- right on the bubble of failure w/ 5s execution
Diffstat (limited to 'test/integration/targets/win_async_wrapper')
-rw-r--r-- | test/integration/targets/win_async_wrapper/tasks/main.yml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/integration/targets/win_async_wrapper/tasks/main.yml b/test/integration/targets/win_async_wrapper/tasks/main.yml index fc8f154f14..da53d87044 100644 --- a/test/integration/targets/win_async_wrapper/tasks/main.yml +++ b/test/integration/targets/win_async_wrapper/tasks/main.yml @@ -4,7 +4,7 @@ - name: async fire and forget async_test: - sleep_delay_sec: 5 + sleep_delay_sec: 8 async: 20 poll: 0 register: asyncresult @@ -17,7 +17,7 @@ - asyncresult.finished == 0 - asyncresult.results_file is search('\.ansible_async.+\d+\.\d+') # ensure that async is actually async- this test will fail if # hosts > forks or if the target host is VERY slow - - (lookup('pipe', 'date +%s') | int) - (start_timestamp | int) < 5 + - (lookup('pipe', 'date +%s') | int) - (start_timestamp | int) < 8 - name: async poll immediate success async_test: |