logstash-integration-rabbitmq 7.0.1-java → 7.0.2-java
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 +4 -4
- data/CHANGELOG.md +3 -0
- data/lib/logstash/outputs/rabbitmq.rb +1 -1
- data/logstash-integration-rabbitmq.gemspec +1 -1
- data/spec/outputs/rabbitmq_spec.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: fc7f493804f0991ccbf4ef181068fdc8e372b661a4f90f0ab0e322735e9c6378
|
|
4
|
+
data.tar.gz: 658056957b677154fe94fb7a9d1d83a7caeadfe35d107e1ea76b526f9810da78
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 438909c98dd41120e55a79ee931714d788adce0313797d7579dcee76d3d12218aa1b94611a11ce568a3557db898a2a5090ec6b1d39e8e5315932b9dc021efbd1
|
|
7
|
+
data.tar.gz: 45d0ac6550002efd2660b86cc930d4e69305c9a8cd9903ec3f9b13fd5c66b4a75abf21677515efb91af7a4d24b032feb244e74c1d4c6b66f937b57f732196f87
|
data/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,6 @@
|
|
|
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
|
|
|
@@ -118,7 +118,7 @@ module LogStash
|
|
|
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.
|
|
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
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Gem::Specification.new do |s|
|
|
2
2
|
s.name = 'logstash-integration-rabbitmq'
|
|
3
|
-
s.version = '7.0.
|
|
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 "+
|
|
@@ -60,7 +60,7 @@ describe LogStash::Outputs::RabbitMQ do
|
|
|
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(:
|
|
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
|
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: logstash-integration-rabbitmq
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 7.0.
|
|
4
|
+
version: 7.0.2
|
|
5
5
|
platform: java
|
|
6
6
|
authors:
|
|
7
7
|
- Elastic
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2019-
|
|
11
|
+
date: 2019-12-03 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
requirement: !ruby/object:Gem::Requirement
|