Skip to content

Commit

Permalink
Backport of fixes from more recent branches:
Browse files Browse the repository at this point in the history
Fixed incorrect millisecond to second conversion for retry_backoff_ms #216
Fixed unnecessary sleep after exhausted retries #166
Changed Kafka send errors to log as warn #179
  • Loading branch information
robbavey committed Feb 11, 2019
1 parent 6d3dd87 commit 162c40f
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,9 @@ rvm:
- jruby-1.7.25
env:
- KAFKA_VERSION=0.10.0.1
before_install: ./kafka_test_setup.sh
before_install:
- gem install bundler -v '< 2'
- ./kafka_test_setup.sh
before_script:
- bundle exec rake vendor
script: bundle exec rspec && bundle exec rspec --tag integration
Expand Down
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
## 5.1.12
- Backport of fixes from more recent branches:
- Fixed incorrect millisecond to second conversion for retry_backoff_ms [#216](https://github.com/logstash-plugins/logstash-output-kafka/pull/216)
- Fixed unnecessary sleep after exhausted retries [#166](https://github.com/logstash-plugins/logstash-output-kafka/pull/166)
- Changed Kafka send errors to log as warn [#179](https://github.com/logstash-plugins/logstash-output-kafka/pull/179)

## 5.1.11
- 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.
Expand Down

0 comments on commit 162c40f

Please sign in to comment.