You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@qpid.apache.org by ac...@apache.org on 2007/09/19 15:01:15 UTC

svn commit: r577295 - /incubator/qpid/trunk/qpid/python/tests_0-10/execution.py

Author: aconway
Date: Wed Sep 19 06:01:15 2007
New Revision: 577295

URL: http://svn.apache.org/viewvc?rev=577295&view=rev
Log:
Added routing key for more readable logs.

Modified:
    incubator/qpid/trunk/qpid/python/tests_0-10/execution.py

Modified: incubator/qpid/trunk/qpid/python/tests_0-10/execution.py
URL: http://svn.apache.org/viewvc/incubator/qpid/trunk/qpid/python/tests_0-10/execution.py?rev=577295&r1=577294&r2=577295&view=diff
==============================================================================
--- incubator/qpid/trunk/qpid/python/tests_0-10/execution.py (original)
+++ incubator/qpid/trunk/qpid/python/tests_0-10/execution.py Wed Sep 19 06:01:15 2007
@@ -24,6 +24,6 @@
     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))