[Zodb-checkins] CVS: ZODB3/ZODB/tests - MTStorage.py:1.6
Guido van Rossum
guido@python.org
Thu, 19 Sep 2002 16:42:01 -0400
Update of /cvs-repository/ZODB3/ZODB/tests
In directory cvs.zope.org:/tmp/cvs-serv4978
Modified Files:
MTStorage.py
Log Message:
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.
=== ZODB3/ZODB/tests/MTStorage.py 1.5 => 1.6 ===
--- ZODB3/ZODB/tests/MTStorage.py:1.5 Wed Sep 11 15:47:20 2002
+++ ZODB3/ZODB/tests/MTStorage.py Thu Sep 19 16:42:00 2002
@@ -170,9 +170,9 @@
for t in threads:
t.start()
for t in threads:
- t.join(30)
+ t.join(60)
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):
db = ZODB.DB(self._storage)