-
Notifications
You must be signed in to change notification settings - Fork 61
New issue
Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
Error in retrieval of schema registry #63
Labels
Comments
andsel
added a commit
to andsel/logstash-integration-kafka
that referenced
this issue
Dec 2, 2020
Due to to some problems in configuring Faraday client (issue logstash-plugins#63), where once the connection is customized it also need to reassing the adapter. This change something at framework level, and while on spec tests it worked smoothly in production revealed some problem. Fixes logstash-plugins#63
andsel
added a commit
to andsel/logstash-integration-kafka
that referenced
this issue
Dec 2, 2020
Due to to some problems in configuring Faraday client (issue logstash-plugins#63), where once the connection is customized it also need to reassing the adapter. This change something at framework level, and while on spec tests it worked smoothly in production revealed some problem. Fixes logstash-plugins#63
andsel
added a commit
to andsel/logstash-integration-kafka
that referenced
this issue
Dec 3, 2020
Due to to some problems in configuring Faraday client (issue logstash-plugins#63), where once the connection is customized it also need to reassing the adapter. This change something at framework level, and while on spec tests it worked smoothly in production revealed some problem. Fixes logstash-plugins#63
This has been fixed with version |
# for free
to join this conversation on GitHub.
Already have an account?
# to comment
The reason is related to https://github.com/logstash-plugins/logstash-integration-kafka/blob/v10.6.0/lib/logstash/plugin_mixins/common.rb#L48-L55. When Faraday customize the connection the adapter as to be reassinged with
conn.adapter Faraday.default_adapter
else Faraday doesn't send the request and theresponse.body
is Nil, generating the error.Related to:
Some references for this Faraday behavior
The text was updated successfully, but these errors were encountered: