mirror of
https://github.com/ansible-collections/community.general.git
synced 2025-07-24 13:50:22 -07:00
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
This commit is contained in:
parent
2618e6d516
commit
ead23783be
1 changed files with 2 additions and 2 deletions
|
@ -4,7 +4,7 @@
|
||||||
|
|
||||||
- name: async fire and forget
|
- name: async fire and forget
|
||||||
async_test:
|
async_test:
|
||||||
sleep_delay_sec: 5
|
sleep_delay_sec: 8
|
||||||
async: 20
|
async: 20
|
||||||
poll: 0
|
poll: 0
|
||||||
register: asyncresult
|
register: asyncresult
|
||||||
|
@ -17,7 +17,7 @@
|
||||||
- asyncresult.finished == 0
|
- asyncresult.finished == 0
|
||||||
- asyncresult.results_file is search('\.ansible_async.+\d+\.\d+')
|
- 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
|
# 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
|
- name: async poll immediate success
|
||||||
async_test:
|
async_test:
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue