From 6160e82bf2fc840487e620ec48be3bd28fb2b744 Mon Sep 17 00:00:00 2001 From: Ganesh Nalawade Date: Mon, 3 Aug 2020 19:28:30 +0530 Subject: [PATCH] Update network integration auth timeout (#71057) * 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 --- test/integration/network-integration.cfg | 1 + 1 file changed, 1 insertion(+) diff --git a/test/integration/network-integration.cfg b/test/integration/network-integration.cfg index dd02334e82f..00764bcdadb 100644 --- a/test/integration/network-integration.cfg +++ b/test/integration/network-integration.cfg @@ -3,6 +3,7 @@ [defaults] host_key_checking = False +timeout = 90 [ssh_connection] ssh_args = '-o UserKnownHostsFile=/dev/null'