logstash-input-rabbitmq 3.1.2 → 3.1.3
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 +4 -4
- data/CHANGELOG.md +4 -2
- data/logstash-input-rabbitmq.gemspec +1 -2
- data/spec/inputs/rabbitmq_spec.rb +3 -3
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: e0b1ce0ea58bfa665489175420267cdc7d4de926
|
|
4
|
+
data.tar.gz: 269db5d3a032d318d4302852628fa351076b8b8d
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: d4778c747ff78c0e5c857493e55f9ea25563dca8f9d6a48c5d4659ae977bfb1f1f96b0e96a812654b9e2c3d59f277873590cd66d2b9aa30378ac7c7deecb7f9c
|
|
7
|
+
data.tar.gz: 2123805fa8f03a7a394c1cb6a17b5a5c0b2cbd963d0834745be4e657b6b3ec33397306d3c0777f4180e2651f356e114734b4bb9a9d4bf77957e2b39a632e8e29
|
data/CHANGELOG.md
CHANGED
|
@@ -1,4 +1,6 @@
|
|
|
1
|
-
|
|
1
|
+
## 3.1.3
|
|
2
|
+
- Fix a spec that shouldn't have broken with LS2.2
|
|
3
|
+
## 3.1.2
|
|
2
4
|
- Upgrade march hare version to fix file perms issue
|
|
3
5
|
## 3.1.1
|
|
4
6
|
- Default codec setting should have been JSON
|
|
@@ -10,7 +12,7 @@
|
|
|
10
12
|
- Bump dependency on logstash-mixin-rabbitmq_connection
|
|
11
13
|
|
|
12
14
|
## 3.0.0
|
|
13
|
-
- Plugins were updated to follow the new shutdown semantic, this mainly allows Logstash to instruct input plugins to terminate gracefully,
|
|
15
|
+
- Plugins were updated to follow the new shutdown semantic, this mainly allows Logstash to instruct input plugins to terminate gracefully,
|
|
14
16
|
instead of using Thread.raise on the plugins' threads. Ref: https://github.com/elastic/logstash/pull/3895
|
|
15
17
|
- Dependency on logstash-core update to 2.0
|
|
16
18
|
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Gem::Specification.new do |s|
|
|
2
2
|
s.name = 'logstash-input-rabbitmq'
|
|
3
|
-
s.version = '3.1.
|
|
3
|
+
s.version = '3.1.3'
|
|
4
4
|
s.licenses = ['Apache License (2.0)']
|
|
5
5
|
s.summary = "Pull events from a RabbitMQ exchange."
|
|
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/plugin install gemname. This gem is not a stand-alone program"
|
|
@@ -27,4 +27,3 @@ Gem::Specification.new do |s|
|
|
|
27
27
|
s.add_development_dependency 'logstash-devutils'
|
|
28
28
|
s.add_development_dependency 'logstash-codec-plain'
|
|
29
29
|
end
|
|
30
|
-
|
|
@@ -68,8 +68,8 @@ describe LogStash::Inputs::RabbitMQ do
|
|
|
68
68
|
end
|
|
69
69
|
|
|
70
70
|
context "with an exchange declared" do
|
|
71
|
-
let(:exchange) {
|
|
72
|
-
let(:key) {
|
|
71
|
+
let(:exchange) { "exchange" }
|
|
72
|
+
let(:key) { "routing key" }
|
|
73
73
|
let(:rabbitmq_settings) { super.merge("exchange" => exchange, "key" => key) }
|
|
74
74
|
|
|
75
75
|
it "should bind to the exchange" do
|
|
@@ -171,4 +171,4 @@ describe "with a live server", :integration => true do
|
|
|
171
171
|
|
|
172
172
|
end
|
|
173
173
|
end
|
|
174
|
-
end
|
|
174
|
+
end
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: logstash-input-rabbitmq
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 3.1.
|
|
4
|
+
version: 3.1.3
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Elastic
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date:
|
|
11
|
+
date: 2016-01-26 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: logstash-core
|