bunny 2.20.0 → 2.20.2
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/lib/bunny/queue.rb +3 -0
- data/lib/bunny/session.rb +6 -2
- data/lib/bunny/version.rb +1 -1
- metadata +3 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 46774013196be7a46ad133b7cf5af2fc4a6b2da1dc09c18542833cb1c9558298
|
4
|
+
data.tar.gz: 0626e219bd998dcf20f34b050300ef03f1c8a0464936fb7fee4796bec840d463
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: c3de342e840d6f79326cd8ba4711e723bfd35279f7a3299523bdef8df16478e6a6715b311534de11f2abe220ca1e7be0654b21d7a4a0c1529e849245c6d49593
|
7
|
+
data.tar.gz: 3b738e7ce55f867da133175909afdde7f3167caa5598cdc6274dfd584263d13b55494b6dc2df674b0ed0955d6bf14413f750f2a245f76293a7037d6ffd93a726
|
data/lib/bunny/queue.rb
CHANGED
data/lib/bunny/session.rb
CHANGED
@@ -671,8 +671,12 @@ module Bunny
|
|
671
671
|
# avoid doing that while holding a mutex lock. MK.
|
672
672
|
ch.handle_method(method)
|
673
673
|
ensure
|
674
|
-
|
675
|
-
|
674
|
+
if ch.nil?
|
675
|
+
@logger.warn "Received a server-sent channel.close but the channel was not found locally. Ignoring the frame."
|
676
|
+
else
|
677
|
+
# synchronises on @channel_mutex under the hood
|
678
|
+
self.unregister_channel(ch)
|
679
|
+
end
|
676
680
|
end
|
677
681
|
when AMQ::Protocol::Basic::GetEmpty then
|
678
682
|
ch = find_channel(ch_number)
|
data/lib/bunny/version.rb
CHANGED
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: bunny
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 2.20.
|
4
|
+
version: 2.20.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Chris Duncan
|
@@ -12,7 +12,7 @@ authors:
|
|
12
12
|
autorequire:
|
13
13
|
bindir: bin
|
14
14
|
cert_chain: []
|
15
|
-
date:
|
15
|
+
date: 2023-01-12 00:00:00.000000000 Z
|
16
16
|
dependencies:
|
17
17
|
- !ruby/object:Gem::Dependency
|
18
18
|
name: amq-protocol
|
@@ -54,7 +54,7 @@ dependencies:
|
|
54
54
|
- - ">="
|
55
55
|
- !ruby/object:Gem::Version
|
56
56
|
version: 1.0.2
|
57
|
-
description: Easy to use, feature complete Ruby client for RabbitMQ 3.
|
57
|
+
description: Easy to use, feature complete Ruby client for RabbitMQ 3.9 and later
|
58
58
|
versions.
|
59
59
|
email:
|
60
60
|
- michael.s.klishin@gmail.com
|