Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
## 7.0.2
- Fixes issue in Output where failure to register connection reovery hooks prevented the output from starting

## 7.0.1
- Improves Input Plugin documentation to better align with upstream guidance [#4](https://github.com/logstash-plugins/logstash-integration-rabbitmq/pull/4)

Expand Down
2 changes: 1 addition & 1 deletion lib/logstash/outputs/rabbitmq.rb
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,7 @@ def back_pressure_provider_for_connection(march_hare_connection)
march_hare_connection.on_unblocked do
executor.remove_back_pressure('connection flagged as unblocked')
end
march_hare_connection.on_recovery_started do
march_hare_connection.on_recovery_start do
executor.engage_back_pressure("connection is being recovered")
end
march_hare_connection.on_recovery do
Expand Down
2 changes: 1 addition & 1 deletion logstash-integration-rabbitmq.gemspec
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Gem::Specification.new do |s|
s.name = 'logstash-integration-rabbitmq'
s.version = '7.0.1'
s.version = '7.0.2'
s.licenses = ['Apache License (2.0)']
s.summary = "Integration with RabbitMQ - input and output plugins"
s.description = "This gem is a Logstash plugin required to be installed on top of the Logstash core pipeline "+
Expand Down
2 changes: 1 addition & 1 deletion spec/outputs/rabbitmq_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@
allow(connection).to receive(:on_blocked)
allow(connection).to receive(:on_unblocked)
allow(connection).to receive(:on_shutdown)
allow(connection).to receive(:on_recovery_started)
allow(connection).to receive(:on_recovery_start)
allow(connection).to receive(:on_recovery)
allow(channel).to receive(:exchange).and_return(exchange)

Expand Down