NSX|P: Do not update backend port vif id after creation
On update ports action, do not update the vif-id, and use the one already set. This will makee migrated ports keep their original vif-ids. Change-Id: Ieffa359e8314319c74be3412e5e673040033a8c5
This commit is contained in:
parent
e499e6c1a9
commit
a1d7774fd0
@ -1743,8 +1743,8 @@ class NsxPolicyPlugin(nsx_plugin_common.NsxPluginV3Base):
|
||||
device_owner.startswith('compute:') and port_data.get('vif_id')):
|
||||
# During api-replay, migrated vm port should have this vif-id
|
||||
vif_id = port_data['vif_id']
|
||||
elif (not device_owner or
|
||||
device_owner != l3_db.DEVICE_OWNER_ROUTER_INTF):
|
||||
elif (is_create and (not device_owner or
|
||||
device_owner != l3_db.DEVICE_OWNER_ROUTER_INTF)):
|
||||
# Set vif_id even if no device owner so that auto-generated
|
||||
# MP ports won't be created for VMs before neutron sets the vif-id
|
||||
vif_id = port_data['id']
|
||||
|
Loading…
x
Reference in New Issue
Block a user