aboutsummaryrefslogtreecommitdiffstats
path: root/nfvbench/chain_runner.py
diff options
context:
space:
mode:
authorPierrick Louin <pierrick.louin@orange.com>2020-10-13 17:21:42 +0200
committerAlec Hothan <ahothan@cisco.com>2020-10-17 15:20:24 +0000
commit8faf4cc8f09ebea48b74e6142a14dcca4633778b (patch)
treefa398f77e05d13156c2c02213a87f6c8661fc038 /nfvbench/chain_runner.py
parentf89dfb7e78c0e6f0474777d5718ebc5bacd76707 (diff)
NFVBENCH-180: Add a 'no_e2e_check' option to skip "end to end" connectivity check
Change-Id: Ic4ed852752a542f958f9ccb74369825bc85ddadb Signed-off-by: Pierrick Louin <pierrick.louin@orange.com>
Diffstat (limited to 'nfvbench/chain_runner.py')
-rw-r--r--nfvbench/chain_runner.py4
1 files changed, 4 insertions, 0 deletions
diff --git a/nfvbench/chain_runner.py b/nfvbench/chain_runner.py
index 62a3751..ae9ccff 100644
--- a/nfvbench/chain_runner.py
+++ b/nfvbench/chain_runner.py
@@ -117,6 +117,10 @@ class ChainRunner(object):
LOG.info('ChainRunner initialized')
def __setup_traffic(self):
+ # possibly skip connectivity check
+ if self.config.no_e2e_check:
+ LOG.info('Skipping end to end connectivity check')
+ return
self.traffic_client.setup()
if not self.config.no_traffic:
# ARP is needed for EXT chain or VxLAN overlay or MPLS unless disabled explicitly