bunny 1.1.8 → 1.1.9
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 +16 -2
- data/lib/bunny/channel.rb +1 -1
- data/lib/bunny/consumer_work_pool.rb +1 -1
- data/lib/bunny/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 599abad9bdef5adbd29c5c54876d168c8a26ed54
|
|
4
|
+
data.tar.gz: 6eb7cb3ac38f41b63e413b9c48ad0f61f9329d8a
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: b660ece369b534e871a94e3e38373e1e3c203e29779086f6d7164d373b0540561382e9024823718f4be9e777ea117d0ade3cfa05885df3b0bdd09452cba82f1b
|
|
7
|
+
data.tar.gz: 20f8107b871686b62e16495344605c85b4864d1d4cfbe131bb3ec16df0ac2af48d32dba0ec420b675ca7b0200274e8798b0f1d0500341131f0ea84fc4afdd504
|
data/ChangeLog.md
CHANGED
|
@@ -1,8 +1,22 @@
|
|
|
1
|
+
## Changes between Bunny 1.1.8 and 1.1.9
|
|
2
|
+
|
|
3
|
+
### :key Supported in Bunny::Channel#queue_bind
|
|
4
|
+
|
|
5
|
+
It is now possible to use `:key` (which Bunny versions prior to 0.9 used)
|
|
6
|
+
as well as `:routing_key` as an argument to `Bunny::Queue#bind`.
|
|
7
|
+
|
|
8
|
+
### System Exceptions Not Rescued by the Library
|
|
9
|
+
|
|
10
|
+
Bunny now rescues `StandardError` instead of `Exception` where
|
|
11
|
+
it automatically does so (e.g. when dispatching deliveries to consumers).
|
|
12
|
+
|
|
13
|
+
Contributed by Alex Young.
|
|
14
|
+
|
|
1
15
|
## Changes between Bunny 1.1.7 and 1.1.8
|
|
2
16
|
|
|
3
|
-
### Initial Socket Connection Again Raises Bunny::TCPConnectionFailed
|
|
17
|
+
### Initial Socket Connection Timeout Again Raises Bunny::TCPConnectionFailed
|
|
4
18
|
|
|
5
|
-
Initial socket connection again raises `Bunny::TCPConnectionFailed`
|
|
19
|
+
Initial socket connection timeout again raises `Bunny::TCPConnectionFailed`
|
|
6
20
|
on the connection origin thread.
|
|
7
21
|
|
|
8
22
|
## Changes between Bunny 1.1.6 and 1.1.7
|
data/lib/bunny/channel.rb
CHANGED
|
@@ -1043,7 +1043,7 @@ module Bunny
|
|
|
1043
1043
|
@connection.send_frame(AMQ::Protocol::Queue::Bind.encode(@id,
|
|
1044
1044
|
name,
|
|
1045
1045
|
exchange_name,
|
|
1046
|
-
opts[:routing_key],
|
|
1046
|
+
(opts[:routing_key] || opts[:key]),
|
|
1047
1047
|
false,
|
|
1048
1048
|
opts[:arguments]))
|
|
1049
1049
|
Bunny::Timeout.timeout(read_write_timeout, ClientTimeout) do
|
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: 1.1.
|
|
4
|
+
version: 1.1.9
|
|
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: 2014-
|
|
15
|
+
date: 2014-04-09 00:00:00.000000000 Z
|
|
16
16
|
dependencies:
|
|
17
17
|
- !ruby/object:Gem::Dependency
|
|
18
18
|
name: amq-protocol
|