From 8dd8a7d93564168b98fa2350eedf56acede42b0f Mon Sep 17 00:00:00 2001 From: "Sean M. Collins" Date: Tue, 30 Jun 2015 12:06:07 -0400 Subject: [PATCH] Remove bridge cleanup call Remove the bridge cleanup call to delete bridges, since we are seeing race conditions where bridges are deleted, then new interfaces are created and are attempting to plug into the bridge before it is recreated. Change-Id: I4ccc96566a5770384eacbbdc492bf09a514f5b31 Related-Bug: #1328546 --- .../ml2/drivers/linuxbridge/agent/linuxbridge_neutron_agent.py | 1 - 1 file changed, 1 deletion(-) diff --git a/neutron/plugins/ml2/drivers/linuxbridge/agent/linuxbridge_neutron_agent.py b/neutron/plugins/ml2/drivers/linuxbridge/agent/linuxbridge_neutron_agent.py index 66be308a29a..1e21db74c7a 100644 --- a/neutron/plugins/ml2/drivers/linuxbridge/agent/linuxbridge_neutron_agent.py +++ b/neutron/plugins/ml2/drivers/linuxbridge/agent/linuxbridge_neutron_agent.py @@ -948,7 +948,6 @@ class LinuxBridgeNeutronAgentRPC(service.Service): LOG.info(_LI("Port %s updated."), device) else: LOG.debug("Device %s not defined on plugin", device) - self.br_mgr.remove_empty_bridges() return resync def scan_devices(self, previous, sync):