mirror of https://github.com/celery/kombu.git
Fixing up after_reply_message_received with better Exception Handling
This commit is contained in:
parent
383f9510b5
commit
d79a5ff069
|
@ -750,12 +750,8 @@ class Channel(base.StdChannel):
|
||||||
"""
|
"""
|
||||||
self._broker.delExchange(exchange_name)
|
self._broker.delExchange(exchange_name)
|
||||||
|
|
||||||
|
@ProtonExceptionHandler('queue in use')
|
||||||
def after_reply_message_received(self, queue):
|
def after_reply_message_received(self, queue):
|
||||||
#TODO investigate the correct behavior of this message. It should
|
|
||||||
# not just return. This is related to the event broadcast behavior
|
|
||||||
# of celery control().
|
|
||||||
#TODO write docstring
|
|
||||||
return
|
|
||||||
self._delete(queue)
|
self._delete(queue)
|
||||||
|
|
||||||
def queue_bind(self, queue, exchange, routing_key, **kwargs):
|
def queue_bind(self, queue, exchange, routing_key, **kwargs):
|
||||||
|
|
Loading…
Reference in New Issue