qpid: Always auto-delete queue of DirectConsumer

In case of the call()er die, the queue used to reply must be
automatically deleted, otherwise they will never been deleted.

This is done in the same way as the rabbit drivers does,
by enabling auto-delete on this queue.

Change-Id: Ib01981d704b8849e0115791ff90fbb74cbac421f
Closes-Bug: #1374519
This commit is contained in:
Mehdi Abaakouk 2014-09-26 22:28:17 +02:00
parent 2b6e24f81b
commit 1640cc1703
1 changed files with 0 additions and 1 deletions

View File

@ -227,7 +227,6 @@ class DirectConsumer(ConsumerBase):
"""
link_opts = {
"auto-delete": conf.amqp_auto_delete,
"exclusive": True,
"durable": conf.amqp_durable_queues,
}