From 28cdc6dc38269d56896d981a2accb691e554efda Mon Sep 17 00:00:00 2001 From: Gordon Sim Date: Thu, 11 Oct 2007 13:29:37 +0000 Subject: Exclusive no longer implies auto-delete on queue.declare. git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/trunk@583821 13f79535-47bb-0310-9956-ffa450edef68 --- qpid/python/tests_0-10/tx.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'qpid/python/tests_0-10/tx.py') diff --git a/qpid/python/tests_0-10/tx.py b/qpid/python/tests_0-10/tx.py index 84c07d51c1..6a682e9ae7 100644 --- a/qpid/python/tests_0-10/tx.py +++ b/qpid/python/tests_0-10/tx.py @@ -155,9 +155,9 @@ class TxTests(TestBase): commit and rollback """ #setup: - channel.queue_declare(queue=name_a, exclusive=True) - channel.queue_declare(queue=name_b, exclusive=True) - channel.queue_declare(queue=name_c, exclusive=True) + channel.queue_declare(queue=name_a, exclusive=True, auto_delete=True) + channel.queue_declare(queue=name_b, exclusive=True, auto_delete=True) + channel.queue_declare(queue=name_c, exclusive=True, auto_delete=True) key = "my_key_" + name_b topic = "my_topic_" + name_c -- cgit v1.2.1