You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
entry.py detects changes to an ldap entry item only if the change triggers <item>.__setattr__. This is not the case with mutable objects like lists, they can be updates without __setattr__ being triggered. Best example is calling .append on a list item, this will not result in an ldap change. This behaviour should be documented in the README.
The text was updated successfully, but these errors were encountered:
entry.py detects changes to an ldap entry item only if the change triggers
<item>.__setattr__
. This is not the case with mutable objects like lists, they can be updates without__setattr__
being triggered. Best example is calling.append
on a list item, this will not result in an ldap change. This behaviour should be documented in the README.The text was updated successfully, but these errors were encountered: