[Python-checkins] r76214 - python/trunk/Lib/bsddb/test/test_replication.py

r.david.murray python-checkins at python.org
Wed Nov 11 19:07:28 CET 2009


Author: r.david.murray
Date: Wed Nov 11 19:07:27 2009
New Revision: 76214

Log:
I got the relative magnitudes of the timeout increases reversed, so
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.


Modified:
   python/trunk/Lib/bsddb/test/test_replication.py

Modified: python/trunk/Lib/bsddb/test/test_replication.py
==============================================================================
--- python/trunk/Lib/bsddb/test/test_replication.py	(original)
+++ python/trunk/Lib/bsddb/test/test_replication.py	Wed Nov 11 19:07:27 2009
@@ -116,7 +116,7 @@
         # 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


More information about the Python-checkins mailing list