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
This commit is contained in:
Kevin Benton 2017-07-31 15:51:57 -07:00
parent 07ebff05ad
commit 72f7f1eaa8
1 changed files with 0 additions and 2 deletions

View File

@ -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']