Change play timeout for persistent connection command timeout (#27948)
There's been a change in persistent connect framework that switches playbook timeout (which corresponds to 'timeout' param) to command_timeout. While we fix this and return the functionality, let's put the command_timeout in place to avoid CI being red.
This commit is contained in:
parent
c05b303db5
commit
0f77afbd60
1 changed files with 3 additions and 1 deletions
|
@ -2,9 +2,11 @@
|
|||
# This file is used by `ansible-test network-integration`
|
||||
|
||||
[defaults]
|
||||
timeout = 60
|
||||
host_key_checking = False
|
||||
log_path = /tmp/ansible-test.out
|
||||
|
||||
[ssh_connection]
|
||||
ssh_args = '-o UserKnownHostsFile=/dev/null'
|
||||
|
||||
[persistent_connection]
|
||||
command_timeout = 60
|
||||
|
|
Loading…
Reference in a new issue