summaryrefslogtreecommitdiff
path: root/qpid/python
diff options
context:
space:
mode:
authorAlan Conway <aconway@apache.org>2007-09-19 13:01:15 +0000
committerAlan Conway <aconway@apache.org>2007-09-19 13:01:15 +0000
commite73a718ba9b590fbe8b5273c0aac266f4a937a9c (patch)
treef339a8ed72dfa5ec5c20924eea257f20fe9059d6 /qpid/python
parent67f46dac215559e7dfc714f4acccd0260889f08b (diff)
downloadqpid-python-e73a718ba9b590fbe8b5273c0aac266f4a937a9c.tar.gz
Added routing key for more readable logs.
git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/trunk@577295 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'qpid/python')
-rw-r--r--qpid/python/tests_0-10/execution.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/qpid/python/tests_0-10/execution.py b/qpid/python/tests_0-10/execution.py
index f2facfe42b..9541369444 100644
--- a/qpid/python/tests_0-10/execution.py
+++ b/qpid/python/tests_0-10/execution.py
@@ -24,6 +24,6 @@ class ExecutionTests (TestBase):
def test_flush(self):
channel = self.channel
for i in [1, 2, 3]:
- channel.basic_publish()
+ channel.basic_publish(routing_key=str(i))
channel.execution_flush()
assert(channel.completion.wait(channel.completion.command_id, timeout=1))