Commit ef8e5a76 authored by Guido van Rossum's avatar Guido van Rossum

A ZEO tests based on the MTStorage test failed randomly on Win98.

Increase the timeout from 10 to 30 seconds and add a message to the
failIf() call.
parent 7eab5679
......@@ -170,9 +170,9 @@ class MTStorage:
for t in threads:
t.start()
for t in threads:
t.join(10)
t.join(30)
for t in threads:
self.failIf(t.isAlive())
self.failIf(t.isAlive(), "thread failed to finish in 30 seconds")
def check2ZODBThreads(self):
db = ZODB.DB(self._storage)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment