Merge "Improve log message when port losts its vlan tag" into stable/rocky

This commit is contained in:
Zuul 2020-07-08 00:29:47 +00:00 committed by Gerrit Code Review
commit 845dfb68c4
1 changed files with 4 additions and 2 deletions

View File

@ -1539,9 +1539,11 @@ class OVSNeutronAgent(l2population_rpc.L2populationRpcCallBackTunnelMixin,
): ):
LOG.info( LOG.info(
"Port '%(port_name)s' has lost " "Port '%(port_name)s' has lost "
"its vlan tag '%(vlan_tag)d'!", "its vlan tag '%(vlan_tag)d'! "
"Current vlan tag on this port is '%(new_vlan_tag)d'.",
{'port_name': port.port_name, {'port_name': port.port_name,
'vlan_tag': lvm.vlan} 'vlan_tag': lvm.vlan,
'new_vlan_tag': port_tags[port.port_name]}
) )
changed_ports.add(port.vif_id) changed_ports.add(port.vif_id)
if changed_ports: if changed_ports: