-
Notifications
You must be signed in to change notification settings - Fork 812
nil pointer dereference in tls check in v0.4.1 #477
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
Comments
Thanks for the bug report! I'm looking into this 👍 |
Note that v0.4.x is not yet officially stable, we're still ironing out the details. If you need a stable version you can pin your dependency at v0.3.7 |
thanks! I'll lock on v0.3.7 for a while, then.. |
@achille-roussel -- works for me! thanks!
…On Tue, Sep 29, 2020 at 2:39 AM Achille ***@***.***> wrote:
Hey @dangogh <https://github.com/dangogh>, I'm going to close this issue
because we are tracking the bug in #487
<#487> as well, and #504
<#504> should be merged soon to
address the problem.
Thanks again for reporting!
—
You are receiving this because you were mentioned.
Reply to this email directly, view it on GitHub
<#477 (comment)>,
or unsubscribe
<https://github.com/notifications/unsubscribe-auth/AAAVXHUFEVISR4QSKMS36YDSIGMMPANCNFSM4P2OQTYA>
.
|
@achille-roussel -- You mentioned 0.4.x is not yet stable. Is there a rough timetable for official release? dependabot keeps bugging me to upgrade each time there's a new tag and just want to know when to pull the trigger... thanks! |
Describe the bug
Trying to use a minimal tls.Config, I get this crash:
Kafka Version
2.2.1 (MSK on AWS)
To Reproduce
I wrote this test to show the crash:
Expected behavior
Successful connection with kafka when a minimal
tls.Config
is used.Additional context
It appears the
netAddr
variable is never being set in this function. It's declared asnet.Addr
which is an interface, but never set otherwise, so it would be nil.The text was updated successfully, but these errors were encountered: