Skip to content

Commit

Permalink
fix: 🐛 Correct remote_url and verify_ssl to come from ExternalIntegra…
Browse files Browse the repository at this point in the history
…tion on Controller.
  • Loading branch information
jdrew82 committed Jul 30, 2024
1 parent 48a6031 commit 7bc5db8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions nautobot_ssot/integrations/aci/jobs.py
Original file line number Diff line number Diff line change
Expand Up @@ -74,8 +74,8 @@ def load_source_adapter(self):
client = AciApi(
username=username,
password=password,
base_uri=self.apic.remote_url,
verify=self.apic.verify_ssl,
base_uri=self.apic.external_integration.remote_url,
verify=self.apic.external_integration.verify_ssl,
site=self.device_site.name if self.device_site else self.apic.location.name,
)
self.source_adapter = AciAdapter(
Expand Down

0 comments on commit 7bc5db8

Please sign in to comment.