mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
Increase async time limit on tests to 10 seconds. (#16921)
This commit is contained in:
parent
ff4f4bc8a0
commit
00fbc76e69
2 changed files with 3 additions and 3 deletions
|
@ -28,7 +28,7 @@
|
||||||
|
|
||||||
- name: Async Hello, World!
|
- name: Async Hello, World!
|
||||||
action: "helloworld_{{ ansible_system|lower }}"
|
action: "helloworld_{{ ansible_system|lower }}"
|
||||||
async: 1
|
async: 10
|
||||||
poll: 1
|
poll: 1
|
||||||
when: ansible_system != 'Win32NT'
|
when: ansible_system != 'Win32NT'
|
||||||
register: async_hello_world
|
register: async_hello_world
|
||||||
|
@ -42,7 +42,7 @@
|
||||||
action: "helloworld_{{ ansible_system|lower }}"
|
action: "helloworld_{{ ansible_system|lower }}"
|
||||||
args:
|
args:
|
||||||
name: Ansible
|
name: Ansible
|
||||||
async: 1
|
async: 10
|
||||||
poll: 1
|
poll: 1
|
||||||
when: ansible_system != 'Win32NT'
|
when: ansible_system != 'Win32NT'
|
||||||
register: async_hello_ansible
|
register: async_hello_ansible
|
||||||
|
|
|
@ -4,7 +4,7 @@
|
||||||
# make sure non-JSON data before module output is ignored
|
# make sure non-JSON data before module output is ignored
|
||||||
- name: async ping with invalid locale via ssh
|
- name: async ping with invalid locale via ssh
|
||||||
ping:
|
ping:
|
||||||
async: 3
|
async: 10
|
||||||
poll: 1
|
poll: 1
|
||||||
register: result
|
register: result
|
||||||
- debug: var=result
|
- debug: var=result
|
||||||
|
|
Loading…
Reference in a new issue