Return-Path: Delivered-To: apmail-incubator-qpid-commits-archive@locus.apache.org Received: (qmail 68444 invoked from network); 19 Sep 2007 13:01:38 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.2) by minotaur.apache.org with SMTP; 19 Sep 2007 13:01:38 -0000 Received: (qmail 64400 invoked by uid 500); 19 Sep 2007 13:01:30 -0000 Delivered-To: apmail-incubator-qpid-commits-archive@incubator.apache.org Received: (qmail 64361 invoked by uid 500); 19 Sep 2007 13:01:30 -0000 Mailing-List: contact qpid-commits-help@incubator.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: qpid-dev@incubator.apache.org Delivered-To: mailing list qpid-commits@incubator.apache.org Received: (qmail 64352 invoked by uid 99); 19 Sep 2007 13:01:30 -0000 Received: from nike.apache.org (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 19 Sep 2007 06:01:30 -0700 X-ASF-Spam-Status: No, hits=-100.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [140.211.11.3] (HELO eris.apache.org) (140.211.11.3) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 19 Sep 2007 13:03:34 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id 008ED1A9832; Wed, 19 Sep 2007 06:01:15 -0700 (PDT) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r577295 - /incubator/qpid/trunk/qpid/python/tests_0-10/execution.py Date: Wed, 19 Sep 2007 13:01:15 -0000 To: qpid-commits@incubator.apache.org From: aconway@apache.org X-Mailer: svnmailer-1.0.8 Message-Id: <20070919130116.008ED1A9832@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org 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))