From c1efbf83ec1c2808ff2d0e7b4c57da9d54464908 Mon Sep 17 00:00:00 2001 From: Justin Drew <2396364+jdrew82@users.noreply.github.com> Date: Sun, 15 Sep 2024 13:48:16 -0500 Subject: [PATCH 1/2] =?UTF-8?q?fix:=20=F0=9F=90=9B=20Correct=20attribute?= =?UTF-8?q?=20to=20get=20ControllerManagedDeviceGroup=20off=20the=20APIC?= =?UTF-8?q?=20Controller=20object.?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- nautobot_ssot/integrations/aci/diffsync/adapters/aci.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/nautobot_ssot/integrations/aci/diffsync/adapters/aci.py b/nautobot_ssot/integrations/aci/diffsync/adapters/aci.py index 9ff46107..f8d9ab89 100644 --- a/nautobot_ssot/integrations/aci/diffsync/adapters/aci.py +++ b/nautobot_ssot/integrations/aci/diffsync/adapters/aci.py @@ -435,8 +435,8 @@ def load_devices(self): site=self.site, site_tag=self.site, controller_group=( - self.job.apic.controller_managed_device_group.name - if self.job.apic.controller_managed_device_group + self.job.apic.controller_managed_device_groups.name + if self.job.apic.controller_managed_device_groups else "" ), ) From c4b10e7093f4413878fae1c20323505a99cf1355 Mon Sep 17 00:00:00 2001 From: Justin Drew <2396364+jdrew82@users.noreply.github.com> Date: Sun, 15 Sep 2024 13:56:43 -0500 Subject: [PATCH 2/2] =?UTF-8?q?docs:=20=F0=9F=93=9D=20Add=20changelog=20sn?= =?UTF-8?q?ippet?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- changes/479.fixed | 1 + 1 file changed, 1 insertion(+) create mode 100644 changes/479.fixed diff --git a/changes/479.fixed b/changes/479.fixed new file mode 100644 index 00000000..284c238d --- /dev/null +++ b/changes/479.fixed @@ -0,0 +1 @@ +Corrected the attribute used to reference the ControllerManagedDeviceGroup off a Controller object. \ No newline at end of file