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
I'm running:
Nautobot 6d6b58f7a303 (v2.3.1)
Single Source of Truth 3.0.1
Python 3.11
I am trying to set up SSOT ACI integration but Sync job fails with following error:
{
"exc_message": [
"'Controller' object has no attribute 'controller_managed_device_group'"
],
"exc_module": "builtins",
"exc_type": "AttributeError"
}
I'm not sure if it is version comparability problem or the way I have set up the objects that is wrong.
Perhaps someone has any ideas ?
More verbose output:
File "/usr/local/lib/python3.11/site-packages/nautobot_ssot/integrations/aci/jobs.py", line 108, in run
super().run(dryrun=self.dryrun, memory_profiling=self.memory_profiling, *args, **kwargs)
File "/usr/local/lib/python3.11/site-packages/nautobot_ssot/jobs/base.py", line 314, in run
self.sync_data(memory_profiling)
File "/usr/local/lib/python3.11/site-packages/nautobot_ssot/jobs/base.py", line 133, in sync_data
self.load_source_adapter()
File "/usr/local/lib/python3.11/site-packages/nautobot_ssot/integrations/aci/jobs.py", line 90, in load_source_adapter
self.source_adapter.load()
File "/usr/local/lib/python3.11/site-packages/nautobot_ssot/integrations/aci/diffsync/adapters/aci.py", line 451, in load
self.load_devices()
File "/usr/local/lib/python3.11/site-packages/nautobot_ssot/integrations/aci/diffsync/adapters/aci.py", line 439, in load_devices
if self.job.apic.controller_managed_device_group
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
AttributeError: 'Controller' object has no attribute 'controller_managed_device_group'
I have "Controller" object and "Managed Device Group" assigned to it.
Tried to check some relationship info in nbshell, but I'm not sure if that is helpful info:
Controller.objects.all()[0].controller_managed_device_group
Traceback (most recent call last):
File "", line 1, in
AttributeError: 'Controller' object has no attribute 'controller_managed_device_group'
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
-
Hi,
I'm running:
Nautobot 6d6b58f7a303 (v2.3.1)
Single Source of Truth 3.0.1
Python 3.11
I am trying to set up SSOT ACI integration but Sync job fails with following error:
I'm not sure if it is version comparability problem or the way I have set up the objects that is wrong.
Perhaps someone has any ideas ?
More verbose output:
I have "Controller" object and "Managed Device Group" assigned to it.
Tried to check some relationship info in nbshell, but I'm not sure if that is helpful info:
nbshell:
Beta Was this translation helpful? Give feedback.
All reactions