summaryrefslogtreecommitdiff
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
commit94aac9400a3e4e941e1d1a982bcbe6f97b1b4fe9 (patch)
tree6192b0626f53e209cd585529820a203a6e298a36
parent697829e5ae5918b4919f95b52fbdd8b760eff1b0 (diff)
downloadqpid-python-94aac9400a3e4e941e1d1a982bcbe6f97b1b4fe9.tar.gz
Added routing key for more readable logs.
git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/trunk/qpid@577295 13f79535-47bb-0310-9956-ffa450edef68
-rw-r--r--python/tests_0-10/execution.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/python/tests_0-10/execution.py b/python/tests_0-10/execution.py
index f2facfe42b..9541369444 100644
--- a/python/tests_0-10/execution.py
+++ b/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))