logstash-input-bunny 0.2.0 → 0.2.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/logstash/inputs/bunny.rb +1 -1
- data/logstash-input-bunny.gemspec +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 53ad519875f5028882ae01afef4053bf4546e45f
|
4
|
+
data.tar.gz: 22724a7aa01f7b4964b6a21d8df08a02c5745711
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: e38c25c1b8dec5f54aeb4f75543b6373a3da9c50483a055396d61898844ec550eab3b219f3bad114be584933ca030e96767f23dc3959841de83e7314deccbf47
|
7
|
+
data.tar.gz: 401e96cc2cd5e694da97df5755ea14d3acd26a79f6b56f367b371b2839a2514f3add425bf4df28a7e3b74a16c2fec15973d8d7773d7b5e5a6d1c33cb48a7677f
|
@@ -180,7 +180,7 @@ class LogStash::Inputs::Bunny < LogStash::Inputs::Threadable
|
|
180
180
|
channel.prefetch(@prefetch)
|
181
181
|
end
|
182
182
|
|
183
|
-
queue = channel.queue(
|
183
|
+
queue = channel.queue(queue_name,
|
184
184
|
durable: @durable,
|
185
185
|
auto_delete: @auto_delete,
|
186
186
|
exclusive: @exclusive,
|
@@ -1,7 +1,7 @@
|
|
1
1
|
Gem::Specification.new do |s|
|
2
2
|
|
3
3
|
s.name = 'logstash-input-bunny'
|
4
|
-
s.version = '0.2.
|
4
|
+
s.version = '0.2.1'
|
5
5
|
s.licenses = ['Apache License (2.0)']
|
6
6
|
s.summary = "Pull events from a RabbitMQ exchange."
|
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"
|