diff --git a/vmware_nsx/api_replay/client.py b/vmware_nsx/api_replay/client.py index 5bd22c1014..b8483be0ff 100644 --- a/vmware_nsx/api_replay/client.py +++ b/vmware_nsx/api_replay/client.py @@ -854,6 +854,11 @@ class ApiReplayClient(utils.PrepareObjectForMigration): {'port': port, 'e': e}) continue + # Skip ports specific to NSX-V LB implementation + if port['device_owner'] == 'neutron:LB': + LOG.debug("Skipping port %s as it has neutron:LB " + "device owner", port['id']) + continue # Let the neutron dhcp-agent recreate this on its own if port['device_owner'] == 'network:dhcp': continue