You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@qpid.apache.org by kp...@apache.org on 2007/11/06 22:16:04 UTC

svn commit: r592556 - /incubator/qpid/trunk/qpid/python/tests_0-10/dtx.py

Author: kpvdr
Date: Tue Nov  6 13:16:03 2007
New Revision: 592556

URL: http://svn.apache.org/viewvc?rev=592556&view=rev
Log:
updated pack param, however nothing was broken because first param is 0

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

Modified: incubator/qpid/trunk/qpid/python/tests_0-10/dtx.py
URL: http://svn.apache.org/viewvc/incubator/qpid/trunk/qpid/python/tests_0-10/dtx.py?rev=592556&r1=592555&r2=592556&view=diff
==============================================================================
--- incubator/qpid/trunk/qpid/python/tests_0-10/dtx.py (original)
+++ incubator/qpid/trunk/qpid/python/tests_0-10/dtx.py Tue Nov  6 13:16:03 2007
@@ -601,7 +601,7 @@
     def xid(self, txid):
         DtxTests.tx_counter += 1
         branchqual = "v%s" % DtxTests.tx_counter
-        return pack('LBB', 0, len(txid), len(branchqual)) + txid + branchqual
+        return pack('!LBB', 0, len(txid), len(branchqual)) + txid + branchqual
         
     def txswap(self, tx, id):
         channel = self.channel