From d20f4c2a5e0f70738949e3b334fb4ba96f4e1e5b Mon Sep 17 00:00:00 2001 From: Jonathan Halcrow Date: Tue, 30 Apr 2013 17:15:49 -0400 Subject: [PATCH 1/2] Don't bind queues to the default exchange - Fixes #209 --- kombu/entity.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/kombu/entity.py b/kombu/entity.py index 682a2628..eaf242e6 100644 --- a/kombu/entity.py +++ b/kombu/entity.py @@ -492,7 +492,7 @@ class Queue(MaybeChannelBound): self.exchange.declare(nowait) self.queue_declare(nowait, passive=False) - if self.exchange is not None: + if self.exchange and self.exchange.name: self.queue_bind(nowait) # - declare extra/multi-bindings. From 7b968eae8387dc7faad2022cb8a78bcd985e082d Mon Sep 17 00:00:00 2001 From: Ask Solem Date: Wed, 1 May 2013 17:58:30 +0100 Subject: [PATCH 2/2] Adds Jonathan Halcrow to AUTHORS --- AUTHORS | 1 + 1 file changed, 1 insertion(+) diff --git a/AUTHORS b/AUTHORS index 78c3229b..a08548e5 100644 --- a/AUTHORS +++ b/AUTHORS @@ -44,6 +44,7 @@ Jasper Bryant-Greene Jeff Balogh John Spray John Watson +Jonathan Halcrow Joseph Crosland Keith Fitzgerald Kevin McCarthy