-
Notifications
You must be signed in to change notification settings - Fork 98
remove unnecessary connection in project_openldap utils.py #810
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
Conversation
|
||
try: | ||
conn.modify(dn, {"description": [(MODIFY_REPLACE, [openldap_description])]}) | ||
conn.unbind() |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
this line should also be removed
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
yes overzealous use of unbind... will correct in due course
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
corrected now in latest force push
|
||
try: | ||
conn.modify_dn(current_dn, relative_dn, new_superior=archive_ou) | ||
conn.unbind() |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
and this one
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
yes overzealous use of unbind... will correct in due course
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
corrected now in latest force push
ceba62b
to
738b5ef
Compare
Signed-off-by: David Simpson <>
738b5ef
to
34edfd3
Compare
Signed-off-by: David Simpson <>
remove unnecessary connection in project_openldap utils.py