Skip to content

Commit ab035e4

Browse files
committed
Bump HTTP poller version to auto-retry
Fixes #41
1 parent 9a226dd commit ab035e4

File tree

3 files changed

+6
-3
lines changed

3 files changed

+6
-3
lines changed

CHANGELOG.md

+3
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
## 2.0.1
2+
- Bump http_client mixin to default to 1 retry for idempotent actions
3+
14
## 2.0.0
25
- Plugins were updated to follow the new shutdown semantic, this mainly allows Logstash to instruct input plugins to terminate gracefully,
36
instead of using Thread.raise on the plugins' threads. Ref: https://github.com/elastic/logstash/pull/3895

Gemfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
source 'https://rubygems.org'
2-
gemspec
2+
gemspec

logstash-input-http_poller.gemspec

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Gem::Specification.new do |s|
22
s.name = 'logstash-input-http_poller'
3-
s.version = '2.0.2'
3+
s.version = '2.0.3'
44
s.licenses = ['Apache License (2.0)']
55
s.summary = "Poll HTTP endpoints with Logstash."
66
s.description = "This gem is a logstash plugin required to be installed on top of the Logstash core pipeline using $LS_HOME/bin/plugin install gemname. This gem is not a stand-alone program."
@@ -19,7 +19,7 @@ Gem::Specification.new do |s|
1919
# Gem dependencies
2020
s.add_runtime_dependency "logstash-core", ">= 2.0.0.beta2", "< 3.0.0"
2121
s.add_runtime_dependency 'logstash-codec-plain'
22-
s.add_runtime_dependency 'logstash-mixin-http_client', ">= 1.0.1"
22+
s.add_runtime_dependency 'logstash-mixin-http_client', ">= 2.1.0", "< 3.0.0"
2323
s.add_runtime_dependency 'stud', "~> 0.0.22"
2424

2525
s.add_development_dependency 'logstash-codec-json'

0 commit comments

Comments
 (0)