logstash-input-lumberjack 1.0.4 → 1.0.5

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 12b4f41cf358aa9dd6e7e398744f74c780371863
4
- data.tar.gz: 91ad7e8d873cbfd3f98d310ac9169ac963ca19e2
3
+ metadata.gz: 87ba38391c70248b7e6a85f19b4f85e92942cd7d
4
+ data.tar.gz: e8979858ab35b8abefd3048903b77659eda1bc7d
5
5
  SHA512:
6
- metadata.gz: bd7ec8da4baf22a8c947c9bffcf44aa94db2bfcb3405f59f4ed685b7e34054f30706033f64335f397c92ed8afa0213e62f4606c4f96fe08409a8fdaf3603be3a
7
- data.tar.gz: 6b275397ba9b3917f4f12b5f7b4bc6b5b3caea0cc4edd695b443ea00fd8b5a308aab0eb39b5f99ceec46e22a61de841ce8544325927a89f0370333fdf4cc2fe6
6
+ metadata.gz: 97d9ad257273a0e53593c3e45df76e9198df741b14f2aa90285215e27b554e14529dd1c60d4983368e8348f066d61405284c04d5462e2010e520433afa053da9
7
+ data.tar.gz: bae977eaecba115374523713b5d834a019b09005b056dfe1567b192038739dade9cacce0e48f4e70f39136e130f9a6373a6e5f971696f6865e6deda8c5eda5d1
data/CHANGELOG.md CHANGED
@@ -1,3 +1,7 @@
1
+ # 1.0.5
2
+ - fix the wrong require for concurrent ruby
3
+ # 1.0.4
4
+ - Update `ruby-lumberjack` to 0.0.24
1
5
  # 1.0.3
2
6
  - Fix `concurrent-ruby` deprecation warning (https://github.com/logstash-plugins/logstash-input-lumberjack/pull/39)
3
7
  - Remove deplicate declaration of the threadpool
@@ -42,7 +42,7 @@ class LogStash::Inputs::Lumberjack < LogStash::Inputs::Base
42
42
 
43
43
  def register
44
44
  require "lumberjack/server"
45
- require "concurrent/executors"
45
+ require "concurrent"
46
46
  require "logstash/circuit_breaker"
47
47
  require "logstash/sized_queue_timeout"
48
48
 
@@ -1,7 +1,7 @@
1
1
  Gem::Specification.new do |s|
2
2
 
3
3
  s.name = 'logstash-input-lumberjack'
4
- s.version = '1.0.4'
4
+ s.version = '1.0.5'
5
5
  s.licenses = ['Apache License (2.0)']
6
6
  s.summary = "Receive events using the lumberjack protocol."
7
7
  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"
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: logstash-input-lumberjack
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.4
4
+ version: 1.0.5
5
5
  platform: ruby
6
6
  authors:
7
7
  - Elastic
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2015-08-17 00:00:00.000000000 Z
11
+ date: 2015-08-21 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: logstash-core