From 0df428ebf9ded14254f73085b28c264086a1bf0d Mon Sep 17 00:00:00 2001 From: rexlee8776 Date: Thu, 30 Jun 2016 01:39:54 +0000 Subject: fix ssh bug when running tc043 on huawei_pod1 Change-Id: I333122dae5c00da3ad9fa495e0ca9e8f5d23ae4f Signed-off-by: rexlee8776 --- yardstick/benchmark/scenarios/networking/ping.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'yardstick') diff --git a/yardstick/benchmark/scenarios/networking/ping.py b/yardstick/benchmark/scenarios/networking/ping.py index aa1a500cf..ae2166687 100644 --- a/yardstick/benchmark/scenarios/networking/ping.py +++ b/yardstick/benchmark/scenarios/networking/ping.py @@ -40,10 +40,10 @@ class Ping(base.Scenario): host = self.context_cfg['host'] user = host.get('user', 'ubuntu') ip = host.get('ip', None) - key_filename = host.get('key_filename', '~/.ssh/id_rsa') + key_filename = host.get('key_filename', '/root/.ssh/id_rsa') password = host.get('password', 'root') - LOG.info("user:%s, host:%s", user, ip) + LOG.info("user:%s, host:%s, key_filename:%s", user, ip, key_filename) self.connection = ssh.SSH(user, ip, key_filename=key_filename, password=password) self.connection.wait() -- cgit 1.2.3-korg