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
There is a problem with Zenoss 4.2.5, when modeling I get this error:
Problem while executing plugin ZenPacks.BCN.Ubiquiti.UbiquitiSubscriberStation
Traceback (most recent call last): File "/opt/zenoss/Products/DataCollector/zenmodeler.py", line 647, in processClient datamaps = plugin.process(device, results, self.log) File "/opt/zenoss/ZenPacks/ZenPacks.BCN.Ubiquiti-1.02.egg/ZenPacks/BCN/Ubiquiti/modeler/plugins/ZenPacks/BCN/Ubiquiti/UbiquitiSubscriberStation.py", line 69, in process if (om.ssMAC in volatiledata) and len(volatiledata) > 0: TypeError: argument of type 'NoneType' is not iterable
Thank you
The text was updated successfully, but these errors were encountered:
I'm stuck in the same. I just try to change if (om.ssMAC in volatiledata) and len(volatiledata) > 0: to if (om.ssMAC in volatiledata) and len(volatiledata) is not None:, but not solve... :(
The zenpack is certainly compatible with 4.2.5. I think something went wrong with your installation. Try reinstalling the zenpack, and if the issue persists, see if it also happens if you freshly add the device to the appropriate organizer. It might be something did not update with your existing device.
Hi,
There is a problem with Zenoss 4.2.5, when modeling I get this error:
Problem while executing plugin ZenPacks.BCN.Ubiquiti.UbiquitiSubscriberStation
Traceback (most recent call last): File "/opt/zenoss/Products/DataCollector/zenmodeler.py", line 647, in processClient datamaps = plugin.process(device, results, self.log) File "/opt/zenoss/ZenPacks/ZenPacks.BCN.Ubiquiti-1.02.egg/ZenPacks/BCN/Ubiquiti/modeler/plugins/ZenPacks/BCN/Ubiquiti/UbiquitiSubscriberStation.py", line 69, in process if (om.ssMAC in volatiledata) and len(volatiledata) > 0: TypeError: argument of type 'NoneType' is not iterable
Thank you
The text was updated successfully, but these errors were encountered: