Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
## 6.2.3
- Bugfix: Sends are now retried until successful. Previously, failed transmissions to Kafka
could have been lost by the KafkaProducer library. Now we verify transmission explicitly.
This changes the default 'retry' from 0 to retry-forever. It was a bug that we defaulted
to a retry count of 0.
https://github.com/logstash-plugins/logstash-output-kafka/pull/151

## 6.2.2
- bump kafka dependency to 0.11.0.0

Expand Down
2 changes: 1 addition & 1 deletion logstash-output-kafka.gemspec
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
Gem::Specification.new do |s|

s.name = 'logstash-output-kafka'
s.version = '6.2.2'
s.version = '6.2.3'
s.licenses = ['Apache License (2.0)']
s.summary = 'Output events to a Kafka topic. This uses the Kafka Producer API to write messages to a topic on the broker'
s.description = "This gem is a Logstash plugin required to be installed on top of the Logstash core pipeline using $LS_HOME/bin/logstash-plugin install gemname. This gem is not a stand-alone program"
Expand Down