diff options
| author | R. David Murray <rdmurray@bitdance.com> | 2009-11-05 14:08:06 (GMT) |
|---|---|---|
| committer | R. David Murray <rdmurray@bitdance.com> | 2009-11-05 14:08:06 (GMT) |
| commit | 0f44dad5ed9ac5396c850a90d2309d3f54e6dcac (patch) | |
| tree | 32e59b2f2c0d6e7fd455cda5c58cc97fc00b22fc | |
| parent | 4fb961cf3edac893267d3ad74410dd5cc1859a11 (diff) | |
| download | cpython-0f44dad5ed9ac5396c850a90d2309d3f54e6dcac.zip cpython-0f44dad5ed9ac5396c850a90d2309d3f54e6dcac.tar.gz cpython-0f44dad5ed9ac5396c850a90d2309d3f54e6dcac.tar.bz2 | |
Merged revisions 76116 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk
........
r76116 | r.david.murray | 2009-11-04 20:50:56 -0500 (Wed, 04 Nov 2009) | 3 lines
Increase the timeout in the bsddb3 replication test to allow
the test time to complete on slow buildbots. See issue 6462.
........
| -rw-r--r-- | Lib/bsddb/test/test_replication.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Lib/bsddb/test/test_replication.py b/Lib/bsddb/test/test_replication.py index 25f03db..faeaf46 100644 --- a/Lib/bsddb/test/test_replication.py +++ b/Lib/bsddb/test/test_replication.py @@ -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()+10 + timeout = time.time()+30 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 @@ -308,7 +308,7 @@ class DBBaseReplication(DBReplicationManager): # is not generated if the master has no new transactions. # This is solved in BDB 4.6 (#15542). import time - timeout = time.time()+10 + timeout = time.time()+60 while (time.time()<timeout) and not (self.confirmed_master and self.client_startupdone) : time.sleep(0.02) |
