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:
asarfaty 2021-03-16 09:28:16 +02:00 committed by Adit Sarfaty
parent 2ab5263905
commit 407679e989
1 changed files with 2 additions and 2 deletions

View File

@ -1740,8 +1740,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']