summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authormklyus <mklyus@cisco.com>2018-11-22 20:32:48 +0300
committerAlec Hothan <ahothan@cisco.com>2018-11-25 17:25:16 +0000
commit52d4e575fe1bd6a02ad4ecda649a8350ecff3931 (patch)
tree63e975d8ffe7291d4bfd38880922217ccef846fb
parent8b1b3e5c7fb91f450b2abe4a8201bcfec14b2bb9 (diff)
NFVBENCH-112 Fix VxLAN exception in chaining.get_networks3.0.1
_get_vxlan_net_cfg patch Change-Id: Iaea3f5a224b155632bf869c53e49a9bc71ef5434 Signed-off-by: Max Klius <mklyus@cisco.com>
-rw-r--r--nfvbench/chaining.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/nfvbench/chaining.py b/nfvbench/chaining.py
index a02bb17..04fd3de 100644
--- a/nfvbench/chaining.py
+++ b/nfvbench/chaining.py
@@ -1017,7 +1017,7 @@ class ChainManager(object):
int_nets = self.config.internal_networks
network_type = set([int_nets[net].get('network_type') for net in int_nets])
if self.config.vxlan and 'vxlan' in network_type:
- net_cfg = self._get_vxlan_net_cfg()
+ net_cfg = self._get_vxlan_net_cfg(chain_id)
else:
# VLAN
if self.config.service_chain == ChainType.PVP: