Nit: network_update in ovs_neutron_agent has a bad LOG

The log entry had %(tag)s but the dict has 'segmentation_id' as key,
so let's change tag to segmentation_id.

Change-Id: Ic6e82a31efe7798c9ec0c5e6bc743db4c280fd1a
Partial-Bug: #1956435
Partial-Bug: #1764738
This commit is contained in:
elajkat 2022-10-13 14:30:17 +02:00
parent 154696ee47
commit 7c1a894ce5
1 changed files with 1 additions and 1 deletions

View File

@ -691,7 +691,7 @@ class OVSNeutronAgent(l2population_rpc.L2populationRpcCallBackTunnelMixin,
if port_id not in self.deleted_ports:
self.updated_ports.add(port_id)
LOG.debug("network_update message processed for network "
"%(network_id)s, tag: %(tag)s, "
"%(network_id)s, tag: %(segmentation_id)s, "
"with ports: %(ports)s",
{'network_id': network_id,
'segmentation_id': seg_id,