logstash-input-kafka 5.1.3 → 5.1.4

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 23b0e120f102a1543bdfc0a3ff8926ca7dc39b2e
4
- data.tar.gz: 0f8f33f6acde6b199930ce593a25b3760eec5b39
3
+ metadata.gz: 55e8135ee758f6822896fe75496f99d1f2702782
4
+ data.tar.gz: b6cda942dc0f5d129879efb1ad5a568b3353aeae
5
5
  SHA512:
6
- metadata.gz: 4dc52455f4321c4fe64cf86ad8ca1bcc7f18e97dc495214ec48870b0605f86d81dc7a524bb7587f504cb0ed132b6f3816f3aae57272c92f4054cc31f5d368253
7
- data.tar.gz: bdf7b3bc93b1c108afeca28342cd51301aa9921b6145d95296423f690f8770704b845aab9db328b357994015d68aaee3d1abfaf30ccf681f6a33a821e8cb2e04
6
+ metadata.gz: ad0a3fd16cdaf547da5b8adb6cd8890474b60bdc3644233ace4fb4c8016b5b6fbbf3c187d1ac4beafaec6301e8313cb95685d5609d61092d4cea525305723d0b
7
+ data.tar.gz: 6e2347e9f29175dd565bc44389e7d6124a358f4be1209ccafcd39b7f87dac1fff5add835931ce32c9e096dab09b36abb47451e0f8569453ab10f5138e28eb1ea
data/CHANGELOG.md CHANGED
@@ -1,3 +1,6 @@
1
+ ## 5.1.4
2
+ - Fix log4j bootstrapping for 2.4
3
+
1
4
  ## 5.1.3
2
5
  - Make error reporting clearer when connection fails
3
6
  - set kerberos only when using GSSAPI
@@ -204,11 +204,6 @@ class LogStash::Inputs::Kafka < LogStash::Inputs::Base
204
204
 
205
205
  public
206
206
  def register
207
- # Logstash 2.4
208
- if defined?(LogStash::Logger) && LogStash::Logger.respond_to?(:setup_log4j)
209
- LogStash::Logger.setup_log4j(@logger)
210
- end
211
-
212
207
  @runner_threads = []
213
208
  end # def register
214
209
 
@@ -1,6 +1,6 @@
1
1
  Gem::Specification.new do |s|
2
2
  s.name = 'logstash-input-kafka'
3
- s.version = '5.1.3'
3
+ s.version = '5.1.4'
4
4
  s.licenses = ['Apache License (2.0)']
5
5
  s.summary = 'This input will read events from a Kafka topic. It uses the high level consumer API provided by Kafka to read messages from the broker'
6
6
  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"
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: logstash-input-kafka
3
3
  version: !ruby/object:Gem::Version
4
- version: 5.1.3
4
+ version: 5.1.4
5
5
  platform: ruby
6
6
  authors:
7
7
  - Elasticsearch