File tree Expand file tree Collapse file tree 4 files changed +6
-3
lines changed Expand file tree Collapse file tree 4 files changed +6
-3
lines changed Original file line number Diff line number Diff line change
1
+ ## 7.0.2
2
+ - Fixes issue in Output where failure to register connection reovery hooks prevented the output from starting
3
+
1
4
## 7.0.1
2
5
- Improves Input Plugin documentation to better align with upstream guidance [ #4 ] ( https://github.com/logstash-plugins/logstash-integration-rabbitmq/pull/4 )
3
6
Original file line number Diff line number Diff line change @@ -118,7 +118,7 @@ def back_pressure_provider_for_connection(march_hare_connection)
118
118
march_hare_connection . on_unblocked do
119
119
executor . remove_back_pressure ( 'connection flagged as unblocked' )
120
120
end
121
- march_hare_connection . on_recovery_started do
121
+ march_hare_connection . on_recovery_start do
122
122
executor . engage_back_pressure ( "connection is being recovered" )
123
123
end
124
124
march_hare_connection . on_recovery do
Original file line number Diff line number Diff line change 1
1
Gem ::Specification . new do |s |
2
2
s . name = 'logstash-integration-rabbitmq'
3
- s . version = '7.0.1 '
3
+ s . version = '7.0.2 '
4
4
s . licenses = [ 'Apache License (2.0)' ]
5
5
s . summary = "Integration with RabbitMQ - input and output plugins"
6
6
s . description = "This gem is a Logstash plugin required to be installed on top of the Logstash core pipeline " +
Original file line number Diff line number Diff line change 60
60
allow ( connection ) . to receive ( :on_blocked )
61
61
allow ( connection ) . to receive ( :on_unblocked )
62
62
allow ( connection ) . to receive ( :on_shutdown )
63
- allow ( connection ) . to receive ( :on_recovery_started )
63
+ allow ( connection ) . to receive ( :on_recovery_start )
64
64
allow ( connection ) . to receive ( :on_recovery )
65
65
allow ( channel ) . to receive ( :exchange ) . and_return ( exchange )
66
66
You can’t perform that action at this time.
0 commit comments