Skip to content

Commit

Permalink
slightly increase win_async_wrapper fire and forget sleeptime
Browse files Browse the repository at this point in the history
* should fix Shippable timeouts when AWS CPU credits are low- right on the bubble of failure w/ 5s execution
  • Loading branch information
nitzmahone committed May 9, 2017
1 parent 2618e6d commit ead2378
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/integration/targets/win_async_wrapper/tasks/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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:
Expand Down

0 comments on commit ead2378

Please sign in to comment.