From efed2499a0950491c675520900fd8616d1a6588c Mon Sep 17 00:00:00 2001 From: "jose.lausuch" Date: Tue, 26 Jan 2016 16:16:24 +0100 Subject: Add timeout in paramiko ssh command Change-Id: I7ef30c08a2335400a79b8a7baf91a27e5eea02e1 Signed-off-by: jose.lausuch (cherry picked from commit a43fac229e1be8c6af2c72a4be9d9c1c95614d21) --- testcases/vPing/CI/libraries/vPing2.py | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'testcases/vPing') diff --git a/testcases/vPing/CI/libraries/vPing2.py b/testcases/vPing/CI/libraries/vPing2.py index 358223585..912627b76 100644 --- a/testcases/vPing/CI/libraries/vPing2.py +++ b/testcases/vPing/CI/libraries/vPing2.py @@ -443,26 +443,26 @@ def main(): port_id1, port_id2) return (EXIT_CODE) - logger.info("Trying to stablish SSH connection to %s..." % floatip) + logger.info("Trying to establish SSH connection to %s..." % floatip) username='cirros' password='cubswin:)' ssh = paramiko.SSHClient() ssh.set_missing_host_key_policy(paramiko.AutoAddPolicy()) - timeout = 50 + timeout = 20 while timeout > 0: try: - ssh.connect(floatip, username=username, password=password) - logger.debug("Floating IP '%s' is ssh-able!" % floatip) + ssh.connect(floatip, username=username, password=password, timeout=10) + logger.debug("SSH connection established to %s." % floatip) break except Exception, e: #print e logger.debug("Waiting for %s..." % floatip) - time.sleep(6) + time.sleep(2) timeout -= 1 if timeout == 0: # 300 sec timeout (5 min) - logger.error("Cannot ping the floating IP '%s'." % floatip) + logger.error("Cannot establish connection to IP '%s'. Aborting" % floatip) cleanup(nova_client, neutron_client, image_id, network_dic, port_id1, port_id2) return (EXIT_CODE) -- cgit 1.2.3-korg