Skip to content

Commit

Permalink
Fix KeyError in acltemplate plugin (#14115)
Browse files Browse the repository at this point in the history
Since this method was originally written the python winbind client
bindings have changed so that the key is dns_name instead of alt_name.
  • Loading branch information
anodos325 authored Jul 30, 2024
1 parent 948e250 commit 2f74eb9
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -206,7 +206,7 @@ async def append_builtins(self, data):
if 'ACTIVE_DIRECTORY' not in domain_info['domain_flags']['parsed']:
self.logger.warning(
'%s: domain is not identified properly as an Active Directory domain.',
domain_info['alt_name']
domain_info['dns_name']
)
return

Expand Down

0 comments on commit 2f74eb9

Please sign in to comment.