diff options
-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""" |