logstash-input-lumberjack 0.1.10 → 1.0.1

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: a24179f3e3ca8a3092c1d692875ea2a88edfa557
4
- data.tar.gz: 46e2bde92697647cb0b26e66484124e7e4ae6c11
3
+ metadata.gz: 3beafbd417f6d367d69928e342803f0adb0fc516
4
+ data.tar.gz: b8a25e2d29c609895803f925a81c9f8d7b63c96a
5
5
  SHA512:
6
- metadata.gz: c21484a7108a55aabe51d75d8877ddc749c1abfe30a033096ec662fa020f46335ffb8a66cba3de79a20b85d24f31f4b7dc51435544263d0f7bdd815ee96387c2
7
- data.tar.gz: cc0df5cd9059650ebf13c4d18956ff2953535e8683ea2ecb167d2592a7bdd43eab06353ac4d77e03133ff3106b2ba2f5996f53d7825e0c78756c5c371e90d88f
6
+ metadata.gz: a4a7af21e205301027d46870a59be8b84968cb02645c20cbc9c39fb5265dcb40b6d76d4b4648b09508987cceac7d2640a44fa26e7d5e75db296156f058cd2033
7
+ data.tar.gz: 14c6c53f2a86156acc7533d7e864392ad38509e60db4a93e85b17b33d9c93a9eb481384766c94d7da5922027f03607b8e3aea0da05e48b924c40ab8c6d7496e2
data/CHANGELOG.md CHANGED
@@ -1,3 +1,7 @@
1
+ # 1.0.1
2
+ - Fix a randomization issue for rspec https://github.com/logstash-plugins/logstash-input-lumberjack/issues/33
3
+ # 1.0.0
4
+ - Default supported plugins are pushed to 1.0
1
5
  # 0.1.10
2
6
  - Deprecating the `max_clients` option
3
7
  - Use a circuit breaker to start refusing new connection when the queue is blocked for too long.
@@ -1,7 +1,7 @@
1
1
  Gem::Specification.new do |s|
2
2
 
3
3
  s.name = 'logstash-input-lumberjack'
4
- s.version = '0.1.10'
4
+ s.version = '1.0.1'
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"
@@ -74,7 +74,7 @@ describe "LogStash::SizedQueueTimeout" do
74
74
 
75
75
  context "when the queue is occupied but not full" do
76
76
  before :each do
77
- Flores::Random.iterations(0..max_size) { subject << "hurray" }
77
+ Flores::Random.iterations(1..max_size-1) { subject << "hurray" }
78
78
  end
79
79
 
80
80
  it "doesnt block on pop" do
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: 0.1.10
4
+ version: 1.0.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Elastic
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2015-06-19 00:00:00.000000000 Z
11
+ date: 2015-06-29 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: logstash-core