Skip to content

Commit

Permalink
fix sync
Browse files Browse the repository at this point in the history
Signed-off-by: Marc 'risson' Schmitt <marc.schmitt@risson.space>
  • Loading branch information
rissson committed Oct 22, 2024
1 parent e8567bc commit 3508524
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion authentik/sources/kerberos/sync.py
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,8 @@ class KerberosSync:

def __init__(self, source: KerberosSource):
self._source = source
self._connection = self._source.connection()
with Krb5ConfContext(self._source):
self._connection = self._source.connection()
self._messages = []
self._logger = get_logger().bind(source=self._source, syncer=self.__class__.__name__)
self.mapper = SourceMapper(self._source)
Expand Down

0 comments on commit 3508524

Please sign in to comment.