Downgrade binding skip in mech_agent
When multiple mech drivers are loaded, it's very common to have on not find agents on a host, we shouldn't emit a warning in this condition. The mechanism manager will log an error if there is an actual failure to bind a port. Change-Id: Icb643f6ffc6699579394d1e5d42f7bbfdcad6de4 Closes-Bug: #1622559
This commit is contained in:
parent
000feab26b
commit
7ff0a50ed9
@ -95,9 +95,10 @@ class AgentMechanismDriverBase(api.MechanismDriver):
|
|||||||
return
|
return
|
||||||
agents = context.host_agents(self.agent_type)
|
agents = context.host_agents(self.agent_type)
|
||||||
if not agents:
|
if not agents:
|
||||||
LOG.warning(_LW("Port %(pid)s on network %(network)s not bound, "
|
LOG.debug("Port %(pid)s on network %(network)s not bound, "
|
||||||
"no agent registered on host %(host)s"),
|
"no agent of type %(at)s registered on host %(host)s",
|
||||||
{'pid': context.current['id'],
|
{'pid': context.current['id'],
|
||||||
|
'at': self.agent_type,
|
||||||
'network': context.network.current['id'],
|
'network': context.network.current['id'],
|
||||||
'host': context.host})
|
'host': context.host})
|
||||||
for agent in agents:
|
for agent in agents:
|
||||||
|
Loading…
Reference in New Issue
Block a user