Merge "Add extra logs to the network update callback in L3 agent" into stable/ussuri

This commit is contained in:
Zuul 2021-08-23 13:30:21 +00:00 committed by Gerrit Code Review
commit ce87f7703e
1 changed files with 3 additions and 0 deletions

View File

@ -593,7 +593,10 @@ class L3NATAgent(ha.AgentMixin,
def network_update(self, context, **kwargs):
network_id = kwargs['network']['id']
LOG.debug("Got network %s update", network_id)
for ri in self.router_info.values():
LOG.debug("Checking if router %s is plugged to the network %s",
ri, network_id)
ports = list(ri.internal_ports)
if ri.ex_gw_port:
ports.append(ri.ex_gw_port)