Merge "FIP Status active after dissociate."

This commit is contained in:
Zuul 2022-08-16 01:17:19 +00:00 committed by Gerrit Code Review
commit 5fe3af996c
1 changed files with 4 additions and 1 deletions

View File

@ -4905,7 +4905,10 @@ class ApicMechanismDriver(api_plus.MechanismDriver,
ports_to_notify.extend([x['port_id'] for x in set(notify_pairs)])
for p in sorted(ports_to_notify):
self._notify_port_update(plugin_context, p)
try:
self._notify_port_update(plugin_context, p)
except n_exceptions.PortNotFound:
LOG.info("Port not found %s", p)
def _notify_port_update_bulk(self, plugin_context, port_ids):
# REVISIT: Is a single query for all ports possible?