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 2014/09/04 22:48:27 UTC

svn commit: r1622560 - /qpid/trunk/qpid/cpp/src/tests/ha_tests.py

Author: aconway
Date: Thu Sep  4 20:48:27 2014
New Revision: 1622560

URL: http://svn.apache.org/r1622560
Log:
NO-JIRA: Fix qpid/cpp/src/tests/ha_tests.py to work on python 2.4.

Modified:
    qpid/trunk/qpid/cpp/src/tests/ha_tests.py

Modified: qpid/trunk/qpid/cpp/src/tests/ha_tests.py
URL: http://svn.apache.org/viewvc/qpid/trunk/qpid/cpp/src/tests/ha_tests.py?rev=1622560&r1=1622559&r2=1622560&view=diff
==============================================================================
--- qpid/trunk/qpid/cpp/src/tests/ha_tests.py (original)
+++ qpid/trunk/qpid/cpp/src/tests/ha_tests.py Thu Sep  4 20:48:27 2014
@@ -1527,7 +1527,7 @@ class TransactionTests(HaBrokerTest):
             t = CommitThread()
             t.start()            # Commit in progress
             t.join(timeout=0.01)
-            self.assertTrue(t.is_alive())
+            self.assertTrue(t.isAlive())
             cluster.bounce(0)
             os.kill(cluster[2].pid, signal.SIGCONT)
             t.join()



---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@qpid.apache.org
For additional commands, e-mail: commits-help@qpid.apache.org