NSX|V3+P: Fix SG creation in port create
Change-Id: Ib8a8214a7704c72ef4182c70eaa2b278ebf3b42f
This commit is contained in:
parent
db86f5d85c
commit
44915a99b4
@ -2098,8 +2098,9 @@ class NsxPolicyPlugin(nsx_plugin_common.NsxPluginV3Base):
|
||||
|
||||
# Do this outside of the context writer scope so it can overcome
|
||||
# failures
|
||||
if port.get('tenant_id'):
|
||||
self._ensure_default_security_group(context, port['tenant_id'])
|
||||
if port_data.get('tenant_id'):
|
||||
self._ensure_default_security_group(context,
|
||||
port_data['tenant_id'])
|
||||
|
||||
with db_api.CONTEXT_WRITER.using(context):
|
||||
neutron_db = self.base_create_port(context, port)
|
||||
|
@ -1465,8 +1465,9 @@ class NsxV3Plugin(nsx_plugin_common.NsxPluginV3Base,
|
||||
|
||||
# Do this outside of the context writer scope so it can overcome
|
||||
# failures
|
||||
if port.get('tenant_id'):
|
||||
self._ensure_default_security_group(context, port['tenant_id'])
|
||||
if port_data.get('tenant_id'):
|
||||
self._ensure_default_security_group(context,
|
||||
port_data['tenant_id'])
|
||||
|
||||
with db_api.CONTEXT_WRITER.using(context):
|
||||
neutron_db = self.base_create_port(context, port)
|
||||
|
Loading…
x
Reference in New Issue
Block a user