You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
line 487.
def find_vlan_on_path(self, path):
''' Finds a VLAN that's not being used at the moment on a provided path.
Returns an available VLAN if possible, None if none are available on
the submitted path.
'''
self.dlogger.debug("find_vlan_on_path: %s" % path)
selected_vlan = None
with self.topolock:
for vlan in range(1,4089):
The text was updated successfully, but these errors were encountered:
line 487.
def find_vlan_on_path(self, path):
''' Finds a VLAN that's not being used at the moment on a provided path.
Returns an available VLAN if possible, None if none are available on
the submitted path.
'''
self.dlogger.debug("find_vlan_on_path: %s" % path)
selected_vlan = None
with self.topolock:
for vlan in range(1,4089):
The text was updated successfully, but these errors were encountered: