diff options
author | MofassirArif <Mofassir_Arif@dellteam.com> | 2016-01-21 06:42:23 -0800 |
---|---|---|
committer | Nauman Ahad <nauman.ahad@xflowresearch.com> | 2016-02-01 22:27:40 +0000 |
commit | 30f974a996efbb4b7f7b4fc3a47a1454c3fe80e5 (patch) | |
tree | ee1d930fca39fa6875de6e18a2ae3dd9dba6f70f /func/env_setup.py | |
parent | c013d5c523c42221f2c3594f0a751e9181b80a6b (diff) |
bug fix: result collection bug fix for docker images
Change-Id: Ia4ea09b90c7a4f4e3699af456c6d66e85661cc0b
Signed-off-by: MofassirArif <Mofassir_Arif@dellteam.com>
(cherry picked from commit 971a7c98515a9d83661f5e423f7e8390f35dca59)
Diffstat (limited to 'func/env_setup.py')
-rw-r--r-- | func/env_setup.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/func/env_setup.py b/func/env_setup.py index 5676d05b..9fd7c106 100644 --- a/func/env_setup.py +++ b/func/env_setup.py @@ -59,7 +59,7 @@ class Env_setup(): os.system(ssh_c) ssh_cmd = './data/qtip_creds.sh {0}'.format(ipvar) print ssh_cmd - res = os.system(ssh_cmd) + res = os.system(ssh_cmd) for infinity in range(100): try : ssh = paramiko.SSHClient() @@ -70,7 +70,7 @@ class Env_setup(): break except: print 'Retrying aSSH' - time.sleep(1) + time.sleep(1) if v == '': print ('SSH->>>>>', k) ssh_c = 'ssh-keyscan {0} >> ~/.ssh/known_hosts'.format(k) |