Merge "Fix migration failed due TypeError of new_vlan_tag"

This commit is contained in:
Zuul 2020-11-19 21:43:35 +00:00 committed by Gerrit Code Review
commit 6684e2135b
1 changed files with 1 additions and 1 deletions

View File

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