Merge "Downgrade log level for gone port on status update"

This commit is contained in:
Jenkins 2015-07-03 04:22:24 +00:00 committed by Gerrit Code Review
commit 7286af11ae
1 changed files with 2 additions and 2 deletions

View File

@ -1400,8 +1400,8 @@ class Ml2Plugin(db_base_plugin_v2.NeutronDbPluginV2,
session.begin(subtransactions=True):
port = db.get_port(session, port_id)
if not port:
LOG.warning(_LW("Port %(port)s updated up by agent not found"),
{'port': port_id})
LOG.debug("Port %(port)s update to %(val)s by agent not found",
{'port': port_id, 'val': status})
return None
if (port.status != status and
port['device_owner'] != const.DEVICE_OWNER_DVR_INTERFACE):