summaryrefslogtreecommitdiffstats
path: root/yardstick/benchmark/scenarios/networking/ping.py
diff options
context:
space:
mode:
authorJingLu5 <lvjing5@huawei.com>2016-08-26 12:34:01 +0800
committerJingLu5 <lvjing5@huawei.com>2016-08-26 13:47:20 +0800
commitc37da3827924a2eb31bb974500c9dffe201aaeef (patch)
treeee67f993afeeff94139aad22dfa3b9f9ae812e4d /yardstick/benchmark/scenarios/networking/ping.py
parent27e254c2273e4be503053db882948b8abf53b269 (diff)
Increase Ping scenario ssh timeout limit to 600 seconds
Change-Id: Ide4b8527d28e8d2ceee43b3b90552abbdc2b31cc Signed-off-by: JingLu5 <lvjing5@huawei.com>
Diffstat (limited to 'yardstick/benchmark/scenarios/networking/ping.py')
-rw-r--r--yardstick/benchmark/scenarios/networking/ping.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/yardstick/benchmark/scenarios/networking/ping.py b/yardstick/benchmark/scenarios/networking/ping.py
index 54c192294..e09ea4a20 100644
--- a/yardstick/benchmark/scenarios/networking/ping.py
+++ b/yardstick/benchmark/scenarios/networking/ping.py
@@ -52,7 +52,7 @@ class Ping(base.Scenario):
user, ip, key_filename)
self.connection = ssh.SSH(user, ip, key_filename=key_filename)
- self.connection.wait()
+ self.connection.wait(timeout=600)
def run(self, result):
"""execute the benchmark"""