Skip to content
Snippets Groups Projects
Commit 37985034 authored by Piotr Maślanka's avatar Piotr Maślanka
Browse files

1.2.3

parent 5f76c64a
No related branches found
Tags v1.2.3
No related merge requests found
# v1.2.3
* _TBA_
* bugfix release: don't bind if queue is topic
# v1.2.2
......
__version__ = '1.2.3_a1'
__version__ = '1.2.3'
......@@ -408,7 +408,7 @@ class Consumer(Channeler):
# We need any form of binding.
if self.queue.exchange is not None:
if self.queue.exchange.type != 'topic':
if self.queue.exchange.type != b'topic':
self.method_and_watch(
QueueBind(
self.queue.name,
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment