-
Notifications
You must be signed in to change notification settings - Fork 126
Allow passing None as uri argument to ldap.initialize() #465
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?
Allow passing None as uri argument to ldap.initialize() #465
Conversation
LGTM, can you also update |
1 similar comment
LGTM, can you also update |
c091f7f
to
0c6d462
Compare
I've updated the pull request. |
0c6d462
to
9d6ce80
Compare
@steffen-kiess could you please rebase the PR with the current master branch? |
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.
Otherwise, looks good to me too. :)
7e6c915
9d6ce80
to
7e6c915
Compare
I've rebased the commit. |
@steffen-kiess Reviewing the PR history, some parts of the documentation have gone from the original commit 9d6ce80, is that intentional? |
7e6c915
to
c4892e9
Compare
Sorry, no, that was not intentional. I rebased the wrong commit (the one I pushed, not the one updated by you). I've pushed a new rebased commit with the documentation changes. |
@mistotebe @droideck Is there anything else I should be doing for this PR? |
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.
Looks good! Thanks!
I would prefer if you keep the |
OpenLDAP allows passing NULL to ldap_initialize(). In this case the default URI from ldap.conf will be used. Allow passing None as uri argument to ldap.initialize().
d84deff
c4892e9
to
d84deff
Compare
Ok, I've changed that so that |
OpenLDAP allows passing NULL to ldap_initialize(). In this case the
default URI from ldap.conf will be used. Allow passing None as uri
argument to ldap.initialize().