mirror of
https://github.com/lldap/lldap.git
synced 2026-04-26 08:45:55 +03:00
[GH-ISSUE #1249] [BUG] Schema breaks query with memberof attribute #442
Labels
No labels
backend
blocked
bug
cleanup
dependencies
docker
documentation
duplicate
enhancement
enhancement
frontend
github_actions
good first issue
help wanted
help wanted
integration
invalid
ldap
pull-request
question
rust
rust
tests
wontfix
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference
starred/lldap-lldap#442
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @deuill on GitHub (Aug 20, 2025).
Original GitHub issue: https://github.com/lldap/lldap/issues/1249
Originally assigned to: @Copilot on GitHub.
Describe the bug
Seen with
ldap3library in a script written in Python, but it seems that performing a search with amemberofattribute will fail on 0.6.2, but would succeed in 0.6.1.To Reproduce
Sample script:
This will fail with
ldap3.core.exceptions.LDAPAttributeError: invalid attribute memberOfon the last call toconnection.search().Expected behavior
Using
memberofattribute should succeed in this case.Logs
lldap-python-ldap3-fail.log
@nitnelave commented on GitHub (Aug 20, 2025):
The problem is that in the schema returned by LLDAP, there is no mention of the memberOf attribute. We need to add that to the response.
@nitnelave commented on GitHub (Aug 21, 2025):
Should be fixed now!