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
My IOSDriver extension was not being returned by get_network_driver due to inspect.getmembers returning sorted output, and the for loop using the first NetworkDriver member, causing the normal napalm IOSDriver to be selected.
Example Failing Code:
fromnapalm.ios.iosimportIOSDriverclassWirelessIOSDriver(IOSDriver):
"""Custom NAPALM driver for Cisco IOS Wireless Controllers."""pass
Example Working Code:
fromnapalm.ios.iosimportIOSDriverclassCustomWirelessIOSDriver(IOSDriver):
"""Custom NAPALM driver for Cisco IOS Wireless Controllers."""pass