diff options
author | Deepak S <deepak.s@linux.intel.com> | 2017-08-12 15:45:03 -0700 |
---|---|---|
committer | Deepak S <deepak.s@linux.intel.com> | 2017-08-15 01:37:12 -0700 |
commit | b8d9d313a3bb9be599b5d4a0a0c188e9a19e5503 (patch) | |
tree | 7d31af18e88c23d09d1d58cdc89510047658f7c2 | |
parent | d9c0b9e1c2e0a11500fa09c10ba559d4944b720c (diff) |
Enable vnf/tg instantiate as blocking call.
untill we fix the sequence issue, we need to make the instantiate
blocking call to avoid hangs
Change-Id: Ie337372625d506e6b3c74a5248204a87fec1ca2c
Signed-off-by: Deepak S <deepak.s@linux.intel.com>
-rw-r--r-- | yardstick/benchmark/scenarios/networking/vnf_generic.py | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/yardstick/benchmark/scenarios/networking/vnf_generic.py b/yardstick/benchmark/scenarios/networking/vnf_generic.py index e0dd36684..092e9a067 100644 --- a/yardstick/benchmark/scenarios/networking/vnf_generic.py +++ b/yardstick/benchmark/scenarios/networking/vnf_generic.py @@ -440,7 +440,6 @@ printf "%s/driver:" $1 ; basename $(readlink -s $1/device/driver); } \ for vnf in chain(traffic_runners, non_traffic_runners): LOG.info("Instantiating %s", vnf.name) vnf.instantiate(self.scenario_cfg, self.context_cfg) - for vnf in chain(traffic_runners, non_traffic_runners): LOG.info("Waiting for %s to instantiate", vnf.name) vnf.wait_for_instantiate() except RuntimeError: |