Merge "[Trivial fix]Remove unnecessary slash"

This commit is contained in:
Zuul 2019-05-08 11:06:41 +00:00 committed by Gerrit Code Review
commit ab8de4fee6

View File

@ -389,8 +389,7 @@ class OVSNeutronAgent(l2population_rpc.L2populationRpcCallBackTunnelMixin,
if (net_uuid and net_uuid not in self._local_vlan_hints and
local_vlan != constants.DEAD_VLAN_TAG):
self.available_local_vlans.remove(local_vlan)
self._local_vlan_hints[local_vlan_map['net_uuid']] = \
local_vlan
self._local_vlan_hints[local_vlan_map['net_uuid']] = local_vlan
def _dispose_local_vlan_hints(self):
self.available_local_vlans.update(self._local_vlan_hints.values())