Commit 9eb5bb8a authored by Guido van Rossum's avatar Guido van Rossum

This test (with ZEO) failed frequently on my Win98 box with a timeout

of 30 seconds.  There's nothing wrong with the code, it's just slow.
So increase the timeout to 60 seconds.
parent e0300a10
...@@ -170,9 +170,9 @@ class MTStorage: ...@@ -170,9 +170,9 @@ class MTStorage:
for t in threads: for t in threads:
t.start() t.start()
for t in threads: for t in threads:
t.join(30) t.join(60)
for t in threads: for t in threads:
self.failIf(t.isAlive(), "thread failed to finish in 30 seconds") self.failIf(t.isAlive(), "thread failed to finish in 60 seconds")
def check2ZODBThreads(self): def check2ZODBThreads(self):
db = ZODB.DB(self._storage) 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