diff options
author | rexlee8776 <limingjiang@huawei.com> | 2016-06-14 10:43:56 +0000 |
---|---|---|
committer | rexlee8776 <limingjiang@huawei.com> | 2016-06-14 10:55:14 +0000 |
commit | 3ec9f7fbd9ed74126ae92be3e7d4c16b39674987 (patch) | |
tree | b46f197e9309a6e42c2548c4dd7755aa15060f61 | |
parent | e8075bab08e15413dbd2eac5c13daa6e48838324 (diff) |
fix bug when running tc043, ssh fail
Change-Id: Ifcbb93f517063d3144f3ea4d7772071d62826e9c
Signed-off-by: rexlee8776 <limingjiang@huawei.com>
-rw-r--r-- | yardstick/benchmark/scenarios/networking/ping.py | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/yardstick/benchmark/scenarios/networking/ping.py b/yardstick/benchmark/scenarios/networking/ping.py index fc4176650..aa1a500cf 100644 --- a/yardstick/benchmark/scenarios/networking/ping.py +++ b/yardstick/benchmark/scenarios/networking/ping.py @@ -41,10 +41,11 @@ class Ping(base.Scenario): user = host.get('user', 'ubuntu') ip = host.get('ip', None) key_filename = host.get('key_filename', '~/.ssh/id_rsa') + password = host.get('password', 'root') LOG.info("user:%s, host:%s", user, ip) - - self.connection = ssh.SSH(user, ip, key_filename=key_filename) + self.connection = ssh.SSH(user, ip, key_filename=key_filename, + password=password) self.connection.wait() def run(self, result): |