logstash-input-rabbitmq 3.1.4 → 3.1.5

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: 0507d6cfebcee1574e915e72dcde6851d4b6584d
4
- data.tar.gz: 066a1bf95bf831b85e7bbc3badb0830477cbdd8e
3
+ metadata.gz: f93375b1eaa4816cd3abbef1aeaa4f6d4f80045f
4
+ data.tar.gz: 4f06a024d67fcc9da7e5c8a4a1fb1ee2aa44ea2b
5
5
  SHA512:
6
- metadata.gz: 17958b74fcd840beba8247d5654db7b6b203ec1e7515d24dcefcab4f884aa2a57db119e79668d3a28db06bc87e35a238f1cc41e1276fac8f38ce543ba57d50fb
7
- data.tar.gz: c13776c81987dc71144de3e91e532bf2b2f58daa03d2baf2276ce51a3cb2f66f4ba392005236c02f74ffe0c24bfc24953fd2aec3eca2f273583e3af649b0da36
6
+ metadata.gz: a0da602e8f34599aca96f97057a59bb9f2a12b67c5b37c72f5c08a5fdfcf9b5a7f2272840235acd31e4dd994ff1d673a247f339560782db5944a5b41221a8ff7
7
+ data.tar.gz: 6cc9ab957d7e94ef0dd154a3e3d920d58d4e4dcb603a5589860a60c68f7850eee63ead3aa0a3d08c8cc9178863c64aba44f78d2577481d2141658f654f3c58ed
data/CHANGELOG.md CHANGED
@@ -1,3 +1,6 @@
1
+ ## 3.1.5
2
+ - Fix a bug where when reconnecting a duplicate consumer would be created
3
+
1
4
  ## 3.1.4
2
5
  - Fix a bug where this plugin would not properly reconnect if it lost its connection to the server while the connection would re-establish itself, the queue subscription would not
3
6
 
@@ -102,32 +102,25 @@ module LogStash
102
102
  # that we rely on MarchHare to do the reconnection for us with auto_reconnect.
103
103
  # Unfortunately, while MarchHare does the reconnection work it won't re-subscribe the consumer
104
104
  # hence the logic below.
105
- loop do
106
- begin
107
- @consumer = @hare_info.queue.build_consumer(:block => true) do |metadata, data|
108
- @codec.decode(data) do |event|
109
- decorate(event)
110
- @output_queue << event if event
111
- end
112
- @hare_info.channel.ack(metadata.delivery_tag) if @ack
113
- end
114
-
115
- if @hare_info.connection.connected?
116
- @logger.info("Will subscribe with consumer", :config => config)
117
- @hare_info.queue.subscribe_with(@consumer, :manual_ack => @ack, :block => true)
118
- @logger.warn("Queue subscription ended! Will retry in #{@subscription_retry_interval_seconds}s", :config => config)
119
- else
120
- @logger.info("RabbitMQ connection down, will wait to retry subscription", :config => config)
121
- end
122
-
123
- break if stop?
124
- @consumer.gracefully_shut_down # Try to clean up gracefully
125
- rescue MarchHare::Exception => e
126
- @logger.warn("Error re-subscribing to queue!", :config => config, :message => e.message, :class => e.class.name)
105
+ @consumer = @hare_info.queue.build_consumer() do |metadata, data|
106
+ @codec.decode(data) do |event|
107
+ decorate(event)
108
+ @output_queue << event if event
127
109
  end
110
+ @hare_info.channel.ack(metadata.delivery_tag) if @ack
111
+ end
112
+
113
+ begin
114
+ @hare_info.queue.subscribe_with(@consumer, :manual_ack => @ack)
115
+ rescue MarchHare::Exception => e
116
+ @logger.warn("Could not subscribe to queue! Will retry in #{@subscription_retry_interval_seconds} seconds", :queue => @queue)
117
+
118
+ sleep @subscription_retry_interval_seconds
119
+ retry
120
+ end
128
121
 
129
- Stud.stoppable_sleep(@subscription_retry_interval_seconds) { stop? }
130
- break if stop? # In case an error was hit before the break above was hit
122
+ while !stop?
123
+ sleep 1
131
124
  end
132
125
  end
133
126
 
@@ -1,6 +1,6 @@
1
1
  Gem::Specification.new do |s|
2
2
  s.name = 'logstash-input-rabbitmq'
3
- s.version = '3.1.4'
3
+ s.version = '3.1.5'
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"
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
4
+ version: 3.1.5
5
5
  platform: ruby
6
6
  authors:
7
7
  - Elastic
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2016-02-09 00:00:00.000000000 Z
11
+ date: 2016-02-28 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: logstash-core