Skip to content

Commit

Permalink
Merge pull request #547 from nautobot/patch-fix_479
Browse files Browse the repository at this point in the history
Fix ACI Bug
  • Loading branch information
jdrew82 authored Sep 16, 2024
2 parents 091fb3a + c4b10e7 commit 447e9d0
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions changes/479.fixed
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Corrected the attribute used to reference the ControllerManagedDeviceGroup off a Controller object.
4 changes: 2 additions & 2 deletions nautobot_ssot/integrations/aci/diffsync/adapters/aci.py
Original file line number Diff line number Diff line change
Expand Up @@ -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 ""
),
)
Expand Down

0 comments on commit 447e9d0

Please sign in to comment.