-
Notifications
You must be signed in to change notification settings - Fork 178
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
Apply PR#468 patch only for 0.12.x. #513
Conversation
When #514 was merged, rebase this PR. |
CI has passed. |
You mean this commit? |
Hmm, v0.13.0 isn't found in https://github.com/karafka/rdkafka-ruby/tags, but found in https://rubygems.org/gems/rdkafka/versions. |
|
Ah sorry, I'm talking about rdkafka-ruby's change, I want to know exact revision of it:
|
I guess change was introduced via https://github.com/karafka/rdkafka-ruby/pull/172/commits, then removed via Maybe this commit keeps compatibility with 0.12.x, but not for 0.13.0 or later. |
With fluent#468, rdkafka 0.12.0 specific patch (Rdkafka::Producer::Client) was introduced [1], but rdkafka's internal change was reverted [2] (removed Rdkafka::Producer::Client) later in 0.13.x. [1] karafka/rdkafka-ruby#172 [2] karafka/rdkafka-ruby#211 So this monkey patch should be effective only between 0.12.0 and 0.12.1 (only 2 versions were shipped in 0.12.x). For 0.13.x or later, it seems harmful. Signed-off-by: Kentaro Hayashi <[email protected]>
Update commit message to refer rdkafka-ruby PR. |
Thanks! |
With #468,
rdkafka 0.12.0 specific patch was introduced, but rdkafka's internal change
was reverted later in 0.13.x.
So this monkey patch should be effective only between 0.12.0 and 0.12.1 (only 2 versions were shipped in 0.12.x).
For 0.13.x or later, it seems harmful.