We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6428172 commit 11b4fdaCopy full SHA for 11b4fda
1 file changed
CHANGELOG.md
@@ -5,6 +5,24 @@
5
This version adopts [Bunny `3.x`](https://github.com/ruby-amqp/bunny/releases/tag/3.0.0)
6
and as a result, requires Ruby 3.0.
7
8
+### `without_namespace` Consumer DSL Option
9
+
10
+Consumers can now opt out of the automatic namespace prefix
11
+for their queue name using the `without_namespace` DSL method:
12
13
+``` ruby
14
+class DeadLetterConsumer
15
+ include Hutch::Consumer
16
+ consume 'dead.letters'
17
+ queue_name 'deadletter'
18
+ without_namespace
19
+end
20
+```
21
22
+Originally contributed by @tlloydthwaites.
23
24
+GitHub issue: [#393](https://github.com/ruby-amqp/hutch/pull/393)
25
26
### Consumer Channel Recovery After Delivery Acknowledgement Timeout
27
28
Hutch now automatically "recovers" (reopens) consumer channels closed by RabbitMQ
0 commit comments