aboutsummaryrefslogtreecommitdiffstats
path: root/yardstick
diff options
context:
space:
mode:
authorRoss Brattain <ross.b.brattain@intel.com>2017-09-14 20:40:48 +0000
committerGerrit Code Review <gerrit@opnfv.org>2017-09-14 20:40:48 +0000
commitac0c076ffc701333aed7d65112a0f2e15fda825a (patch)
tree4f8088c34d15bc29f6f3d3b210359a620272f547 /yardstick
parent8ba961d5cded6a0993ef00e8f9b5e0a7cd32d216 (diff)
parent971976a893b9cba360d3fc1cb67c8b1d327da6dd (diff)
Merge "ssh fix, always wait"
Diffstat (limited to 'yardstick')
-rw-r--r--yardstick/ssh.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/yardstick/ssh.py b/yardstick/ssh.py
index a024cf64a..bb715e4b4 100644
--- a/yardstick/ssh.py
+++ b/yardstick/ssh.py
@@ -432,8 +432,9 @@ class SSH(object):
class AutoConnectSSH(SSH):
+ # always wait or we will get OpenStack SSH errors
def __init__(self, user, host, port=None, pkey=None,
- key_filename=None, password=None, name=None, wait=False):
+ key_filename=None, password=None, name=None, wait=True):
super(AutoConnectSSH, self).__init__(user, host, port, pkey, key_filename, password, name)
self._wait = wait