From 72f7f1eaa8a4b9b2c792d4466506b8164020d922 Mon Sep 17 00:00:00 2001 From: Kevin Benton Date: Mon, 31 Jul 2017 15:51:57 -0700 Subject: [PATCH] Drop port_delete and port_update debug msgs The push notification resource cache will already give us the port update and delete notifications so there is no need to log here now. Change-Id: I6000691dfd61facf47d70360d4050cfdefc3e7e2 Partial-Bug: #1707307 --- .../plugins/ml2/drivers/openvswitch/agent/ovs_neutron_agent.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/neutron/plugins/ml2/drivers/openvswitch/agent/ovs_neutron_agent.py b/neutron/plugins/ml2/drivers/openvswitch/agent/ovs_neutron_agent.py index 2e137daa8e2..1890b716d23 100644 --- a/neutron/plugins/ml2/drivers/openvswitch/agent/ovs_neutron_agent.py +++ b/neutron/plugins/ml2/drivers/openvswitch/agent/ovs_neutron_agent.py @@ -396,13 +396,11 @@ class OVSNeutronAgent(sg_rpc.SecurityGroupAgentRpcCallbackMixin, # they are not used since there is no guarantee the notifications # are processed in the same order as the relevant API requests self.updated_ports.add(port['id']) - LOG.debug("port_update message processed for port %s", port['id']) def port_delete(self, context, **kwargs): port_id = kwargs.get('port_id') self.deleted_ports.add(port_id) self.updated_ports.discard(port_id) - LOG.debug("port_delete message processed for port %s", port_id) def network_update(self, context, **kwargs): network_id = kwargs['network']['id']