logstash-input-bunny 0.1.8 → 0.1.9
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 +2 -0
- 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: 487f8d41ea9e2a064b28f88d2fd529e7377d7b95
|
4
|
+
data.tar.gz: 8d3dcccf5a8cbef0c613b4719ec2d5721b06db19
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 6923f0ef09f74d11e50263cc1968ae298d80bb3617c200fbd2507965f57284e1b14c2c35d306385a291cf25d79a363c34a626837c906e8ee376d33c7bf6c198a
|
7
|
+
data.tar.gz: 143ff56b99187dbb006efc7cf9db8c8aff5e54fcb7ce71b0fedeefa9029996abef3582a7a3faaf83c8342395a9eaaf14f8bd912e844913ef50983260384293c5
|
@@ -134,6 +134,8 @@ class LogStash::Inputs::Bunny < LogStash::Inputs::Threadable
|
|
134
134
|
retry
|
135
135
|
|
136
136
|
rescue OpenSSL::SSL::SSLError => e
|
137
|
+
n = Bunny::Session::DEFAULT_NETWORK_RECOVERY_INTERVAL * 2
|
138
|
+
|
137
139
|
@logger.error("RabbitMQ SSL connection error: #{e.message}. Will attempt to reconnect in #{n} seconds...")
|
138
140
|
sleep n
|
139
141
|
retry
|
@@ -1,7 +1,7 @@
|
|
1
1
|
Gem::Specification.new do |s|
|
2
2
|
|
3
3
|
s.name = 'logstash-input-bunny'
|
4
|
-
s.version = '0.1.
|
4
|
+
s.version = '0.1.9'
|
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"
|