diff options
| author | Gordon Sim <gsim@apache.org> | 2007-10-11 13:29:37 +0000 |
|---|---|---|
| committer | Gordon Sim <gsim@apache.org> | 2007-10-11 13:29:37 +0000 |
| commit | 685aad458c485cd260df694f58d2f7641ce94e32 (patch) | |
| tree | 57b4963ac7105f711ced6e4627232e0f62fda3be /python/tests_0-10/tx.py | |
| parent | a23f05ddb503e587473519fa3f6491a93798a535 (diff) | |
| download | qpid-python-685aad458c485cd260df694f58d2f7641ce94e32.tar.gz | |
Exclusive no longer implies auto-delete on queue.declare.
git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/trunk/qpid@583821 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'python/tests_0-10/tx.py')
| -rw-r--r-- | python/tests_0-10/tx.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/python/tests_0-10/tx.py b/python/tests_0-10/tx.py index 84c07d51c1..6a682e9ae7 100644 --- a/python/tests_0-10/tx.py +++ b/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 |
