NFVBENCH-1 Number of seconds to wait for VMs to pass traffic can be 23/39923/2
authormortenhillbom <mortenhillbom@gmail.com>
Wed, 23 Aug 2017 00:11:22 +0000 (17:11 -0700)
committermortenhillbom <mortenhillbom@gmail.com>
Wed, 23 Aug 2017 01:08:57 +0000 (18:08 -0700)
set in config

Change-Id: Ia4ee4a89e3b839b287b7960c0d31dbc96e1f0331
Signed-off-by: mortenhillbom <mortenhillbom@gmail.com>
nfvbench/cfg.default.yaml
nfvbench/chain_clients.py

index a082a8f..196e40a 100644 (file)
@@ -198,6 +198,9 @@ traffic_generator:
 # The openrc file
 openrc_file:
 
+# Number of seconds to wait for VMs to pass traffic in both directions
+check_traffic_time_sec: 200
+
 # General retry count
 generic_retry_count: 100
 
index affccc8..bf51552 100644 (file)
@@ -48,7 +48,9 @@ class BasicStageClient(object):
         self.host_ips = None
 
     def _ensure_vms_active(self):
-        for _ in range(self.config.generic_retry_count):
+        retry_count = (self.config.check_traffic_time_sec +
+                       self.config.generic_poll_sec - 1) / self.config.generic_poll_sec
+        for _ in range(retry_count):
             for i, instance in enumerate(self.vms):
                 if instance.status == 'ACTIVE':
                     continue