You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
620 B
YAML
25 lines
620 B
YAML
# Verify 'async: <timeout>' functions as desired.
|
|
|
|
- name: integration/async/runner_with_polling_and_timeout.yml
|
|
hosts: test-targets
|
|
any_errors_fatal: true
|
|
tasks:
|
|
|
|
# Verify async-with-polling-and-timeout behaviour.
|
|
|
|
- name: sleep for 7 seconds, but timeout after 1 second.
|
|
ignore_errors: true
|
|
shell: sleep 7
|
|
async: 1
|
|
poll: 1
|
|
register: job1
|
|
|
|
- assert:
|
|
that:
|
|
- job1.changed == False
|
|
- job1.failed == True
|
|
- |
|
|
job1.msg == "async task did not complete within the requested time" or
|
|
job1.msg == "Job reached maximum time limit of 1 seconds."
|
|
|