We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a67ac6d commit 9154916Copy full SHA for 9154916
CHANGELOG.md
@@ -5,6 +5,7 @@
5
- [Enhancement] Support producing and consuming of headers with mulitple values (KIP-82).
6
- [Enhancement] Allow native Kafka customization poll time.
7
- [Enhancement] Roll out experimental jruby support.
8
+- [Fix] Fix issue where post-closed producer C topics refs would not be cleaned.
9
10
## 0.21.0 (2025-02-13)
11
- [Enhancement] Bump librdkafka to `2.8.0`
lib/rdkafka/native_kafka.rb
@@ -126,6 +126,8 @@ def close(object_id=nil)
126
# and would continue to run, trying to destroy inner twice
127
return unless @inner
128
129
+ yield if block_given?
130
+
131
Rdkafka::Bindings.rd_kafka_destroy(@inner)
132
@inner = nil
133
@opaque = nil
0 commit comments