From ffe1a98a4749d84060355bacf881ac1d2ba1324c Mon Sep 17 00:00:00 2001 From: Alan Conway Date: Tue, 14 Jun 2011 20:48:00 +0000 Subject: NO-JIRA: Increase join timeout in brokertest.py, was causing spurious failures. git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk/qpid@1135786 13f79535-47bb-0310-9956-ffa450edef68 --- cpp/src/tests/brokertest.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'cpp/src/tests/brokertest.py') diff --git a/cpp/src/tests/brokertest.py b/cpp/src/tests/brokertest.py index 538175b525..249cc126cb 100644 --- a/cpp/src/tests/brokertest.py +++ b/cpp/src/tests/brokertest.py @@ -509,7 +509,7 @@ class BrokerTest(TestCase): actual_contents = self.browse(session, queue, timeout) self.assertEqual(expect_contents, actual_contents) -def join(thread, timeout=10): +def join(thread, timeout=60): thread.join(timeout) if thread.isAlive(): raise Exception("Timed out joining thread %s"%thread) -- cgit v1.2.1