diff --git a/vmware_nsx/services/lbaas/nsx_p/implementation/loadbalancer_mgr.py b/vmware_nsx/services/lbaas/nsx_p/implementation/loadbalancer_mgr.py index 2066a3c99d..843747b9cb 100644 --- a/vmware_nsx/services/lbaas/nsx_p/implementation/loadbalancer_mgr.py +++ b/vmware_nsx/services/lbaas/nsx_p/implementation/loadbalancer_mgr.py @@ -152,10 +152,15 @@ class EdgeLoadBalancerManagerFromDict(base_mgr.NsxpLoadbalancerBaseManager): port = self.core_plugin.get_port( context.elevated(), lb['vip_port_id']) if port.get('device_owner') == lb_const.VMWARE_LB_VIP_OWNER: - self.core_plugin.update_port( - context.elevated(), lb['vip_port_id'], - {'port': {'device_id': '', - 'device_owner': ''}}) + try: + self.core_plugin.update_port( + context.elevated(), lb['vip_port_id'], + {'port': {'device_id': '', + 'device_owner': ''}}) + except Exception as e: + # Just log the error as all other resources were deleted + LOG.error("Failed to update neutron port %s devices upon " + "loadbalancer deletion: %s", lb['vip_port_id'], e) completor(success=True)