diff options
author | JingLu5 <lvjing5@huawei.com> | 2016-08-26 12:34:01 +0800 |
---|---|---|
committer | JingLu5 <lvjing5@huawei.com> | 2016-08-26 13:47:20 +0800 |
commit | c37da3827924a2eb31bb974500c9dffe201aaeef (patch) | |
tree | ee67f993afeeff94139aad22dfa3b9f9ae812e4d | |
parent | 27e254c2273e4be503053db882948b8abf53b269 (diff) |
Increase Ping scenario ssh timeout limit to 600 seconds
Change-Id: Ide4b8527d28e8d2ceee43b3b90552abbdc2b31cc
Signed-off-by: JingLu5 <lvjing5@huawei.com>
-rw-r--r-- | yardstick/benchmark/scenarios/networking/ping.py | 2 |
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""" |