]> granicus.if.org Git - python/commitdiff
I got the relative magnitudes of the timeout increases reversed, so
authorR. David Murray <rdmurray@bitdance.com>
Wed, 11 Nov 2009 18:07:27 +0000 (18:07 +0000)
committerR. David Murray <rdmurray@bitdance.com>
Wed, 11 Nov 2009 18:07:27 +0000 (18:07 +0000)
I'm bumping up the longer test to the 60 seconds I intended to make it.
If this doesn't cure the intermittent buildbot timeouts, I'm going to
turn that test into a warning rather than a failure.

Lib/bsddb/test/test_replication.py

index faeaf4673d2ff801951497074b1d72cfa39431b3..8e8309b97e3d4f2d5235e8fcc18e66f2fa7ba819 100644 (file)
@@ -116,7 +116,7 @@ class DBReplicationManager(unittest.TestCase):
         # is not generated if the master has no new transactions.
         # This is solved in BDB 4.6 (#15542).
         import time
-        timeout = time.time()+30
+        timeout = time.time()+60
         while (time.time()<timeout) and not (self.confirmed_master and self.client_startupdone) :
             time.sleep(0.02)
         # this fails on Windows as self.client_startupdone never gets set