diff options
Diffstat (limited to 'cpp/src/tests/brokertest.py')
-rw-r--r-- | cpp/src/tests/brokertest.py | 2 |
1 files changed, 1 insertions, 1 deletions
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) |