-
Notifications
You must be signed in to change notification settings - Fork 252
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
Net::LDAP#open does not cache bind result #334
Conversation
aligns implementation of open with other methods, so the result becomes accessible via get_operation_result
This reverts commit c8bd985
@mtodd this is ready for review 👍 |
…nto ldap-open-connection-bug
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.
👍 thanks for tracking this down and making the fix.
Also 👍 to bumping the version to 0.16.2 as this isn't modifying any API interfaces; if anything, it will improve existing functionality by properly setting the @result
as expected, which would classify this as a bug fix.
I believe this comment is indicating that the result isn't checked and acted on, not necessarily that the result should be dropped altogether. |
Update ruby-net-ldap to 0.16.2. === Net::LDAP 0.16.2 * Net::LDAP#open does not cache bind result {#334}[ruby-ldap/ruby-net-ldap#334] * Fix CI build {#333}[ruby-ldap/ruby-net-ldap#333] * Fix to "undefined method 'result_code'" {#308}[ruby-ldap/ruby-net-ldap#308] * Fixed Exception: incompatible character encodings: ASCII-8BIT and UTF-8 in filter.rb {#285}[ruby-ldap/ruby-net-ldap#285]
Hi friends 👋 this is a follow up to #331, same fix, but including the fixed CI build 🎉
What
I identified that clients cannot safely rely on
Net::LDAP#get_operation_result
when usingNet::LDAP#open
because@result
is not set. As a consequence, clients callingNet::LDAP#get_operation_result
would get the previous cached@result
. Yikes 🙀How
The solution is simple: to cache
@result
accordingly, like other methods in the class do. You can see the 🐛 reproduced in ab18e5b. The test is 8ba3f95And then going 🍏 in 92be710
Assumptions
It's not clear to me if this was an intentional design choice. Maybe no one was meant to call
Net::LDAP#get_operation_result
afterNet::LDAP#open
? If that's the case, I couldn't find any evidence.I see there are some comments explicitly calling out the result is deliberately ignored ¯_(ツ)_/¯