From dc5d1a318f7a04dbbba5ba8a9f171f15b55f25c0 Mon Sep 17 00:00:00 2001 From: Adit Sarfaty Date: Wed, 15 Nov 2017 12:15:41 +0200 Subject: [PATCH] NSX|v: Fix provider network creation When creating a portgroup provider natwork, the name of the neutron network should match the name of the virtual wire. Commit Ib5ed8f0d75aed98963e1deff9c123ee01afc875c removed the network name from the code by mistake Change-Id: I1c9bf57d3fefde0c9ec9370628a8b5bbc92b783f --- vmware_nsx/plugins/nsx_v/vshield/vcns.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vmware_nsx/plugins/nsx_v/vshield/vcns.py b/vmware_nsx/plugins/nsx_v/vshield/vcns.py index a1cb36c16c..4cee421647 100644 --- a/vmware_nsx/plugins/nsx_v/vshield/vcns.py +++ b/vmware_nsx/plugins/nsx_v/vshield/vcns.py @@ -921,7 +921,7 @@ class Vcns(object): def validate_network_name(self, object_id, name, during_init=False): return self._scopingobjects_lookup(NETWORK_TYPES, object_id, - use_cache=during_init) + name=name, use_cache=during_init) def validate_vdn_scope(self, object_id): uri = '%s/scopes' % VDN_PREFIX