Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@ and this project adheres to

- log: Clear handlers in `setup_logger()` by default to avoid duplicate log
lines, with optional clear=False to keep existing handlers (#88).
- auth: LDAP debug log search base error.

## [1.8.0] - 2026-05-22

Expand Down
4 changes: 2 additions & 2 deletions src/authentication/rfl/authentication/ldap.py
Original file line number Diff line number Diff line change
Expand Up @@ -314,7 +314,7 @@ def _lookup_user_dn(self, user):
connection.unbind_s()
logger.debug(
"LDAP search base: %s, scope: subtree, filter: %s, results: %s",
self.group_base,
self.user_base,
search_filter,
str(results),
)
Expand Down Expand Up @@ -412,7 +412,7 @@ def _list_user_dn(self, connection):
) from err
logger.debug(
"LDAP search base: %s, scope: subtree, filter: %s, results: %s",
self.group_base,
self.user_base,
search_filter,
str(results),
)
Expand Down
Loading