e95b45c5ec
* Incase of network integration test for connection local
test the paramiko_ssh auth_timeout is the value of timeout
under defaults section which is 10 seconds.
* For slower connection 10sec timout value result in authentication
timeout error hence increase the timeout value to 90 seconds
(cherry picked from commit 6160e82bf2
)
Co-authored-by: Ganesh Nalawade <ganesh634@gmail.com>
14 lines
350 B
INI
14 lines
350 B
INI
# NOTE: This file is used by ansible-test to override specific Ansible constants
|
|
# This file is used by `ansible-test network-integration`
|
|
|
|
[defaults]
|
|
host_key_checking = False
|
|
timeout = 90
|
|
|
|
[ssh_connection]
|
|
ssh_args = '-o UserKnownHostsFile=/dev/null'
|
|
|
|
[persistent_connection]
|
|
command_timeout = 100
|
|
connect_timeout = 100
|
|
connect_retry_timeout = 100
|