diff options
author | Rex Lee <limingjiang@huawei.com> | 2016-12-12 07:43:15 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@opnfv.org> | 2016-12-12 07:43:15 +0000 |
commit | 3c3ac5d9e89af36bb609017e69f6d03b52d8b251 (patch) | |
tree | 0a2628e5b00bb0de2bec66a59ff33344c36561f0 | |
parent | d66ba5a3b6cfb7743913ef4e6da2eaabe1778e34 (diff) | |
parent | c37da3827924a2eb31bb974500c9dffe201aaeef (diff) |
Merge "Increase Ping scenario ssh timeout limit to 600 seconds"
-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 b41aa0d94..6e49a1437 100644 --- a/yardstick/benchmark/scenarios/networking/ping.py +++ b/yardstick/benchmark/scenarios/networking/ping.py @@ -55,7 +55,7 @@ class Ping(base.Scenario): self.connection = ssh.SSH(user, ip, key_filename=key_filename, port=ssh_port) - self.connection.wait() + self.connection.wait(timeout=600) def run(self, result): """execute the benchmark""" |