Merge "Fix OVS agent reclaims local VLAN"
This commit is contained in:
commit
468a0ab162
@ -978,7 +978,7 @@ class OVSNeutronAgent(sg_rpc.SecurityGroupAgentRpcCallbackMixin,
|
|||||||
for device in devices:
|
for device in devices:
|
||||||
LOG.info(_("Attachment %s removed"), device)
|
LOG.info(_("Attachment %s removed"), device)
|
||||||
try:
|
try:
|
||||||
details = self.plugin_rpc.update_device_down(self.context,
|
self.plugin_rpc.update_device_down(self.context,
|
||||||
device,
|
device,
|
||||||
self.agent_id,
|
self.agent_id,
|
||||||
cfg.CONF.host)
|
cfg.CONF.host)
|
||||||
@ -987,11 +987,6 @@ class OVSNeutronAgent(sg_rpc.SecurityGroupAgentRpcCallbackMixin,
|
|||||||
{'device': device, 'e': e})
|
{'device': device, 'e': e})
|
||||||
resync = True
|
resync = True
|
||||||
continue
|
continue
|
||||||
if details['exists']:
|
|
||||||
LOG.info(_("Port %s updated."), device)
|
|
||||||
# Nothing to do regarding local networking
|
|
||||||
else:
|
|
||||||
LOG.debug(_("Device %s not defined on plugin"), device)
|
|
||||||
self.port_unbound(device)
|
self.port_unbound(device)
|
||||||
return resync
|
return resync
|
||||||
|
|
||||||
|
@ -222,7 +222,7 @@ class TestOvsNeutronAgent(base.BaseTestCase):
|
|||||||
return_value=details):
|
return_value=details):
|
||||||
with mock.patch.object(self.agent, 'port_unbound') as port_unbound:
|
with mock.patch.object(self.agent, 'port_unbound') as port_unbound:
|
||||||
self.assertFalse(self.agent.treat_devices_removed([{}]))
|
self.assertFalse(self.agent.treat_devices_removed([{}]))
|
||||||
self.assertEqual(port_unbound.called, not port_exists)
|
self.assertTrue(port_unbound.called)
|
||||||
|
|
||||||
def test_treat_devices_removed_unbinds_port(self):
|
def test_treat_devices_removed_unbinds_port(self):
|
||||||
self._mock_treat_devices_removed(True)
|
self._mock_treat_devices_removed(True)
|
||||||
|
Loading…
Reference in New Issue
Block a user