mirror of
https://github.com/python/cpython.git
synced 2025-09-26 18:29:57 +00:00
Increase the timeout in the bsddb3 replication test to allow
the test time to complete on slow buildbots. See issue 6462.
This commit is contained in:
parent
323b9da16d
commit
2537e7a443
1 changed files with 2 additions and 2 deletions
|
@ -116,7 +116,7 @@ class DBReplicationManager(unittest.TestCase):
|
||||||
# is not generated if the master has no new transactions.
|
# is not generated if the master has no new transactions.
|
||||||
# This is solved in BDB 4.6 (#15542).
|
# This is solved in BDB 4.6 (#15542).
|
||||||
import time
|
import time
|
||||||
timeout = time.time()+10
|
timeout = time.time()+30
|
||||||
while (time.time()<timeout) and not (self.confirmed_master and self.client_startupdone) :
|
while (time.time()<timeout) and not (self.confirmed_master and self.client_startupdone) :
|
||||||
time.sleep(0.02)
|
time.sleep(0.02)
|
||||||
# this fails on Windows as self.client_startupdone never gets set
|
# 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.
|
# is not generated if the master has no new transactions.
|
||||||
# This is solved in BDB 4.6 (#15542).
|
# This is solved in BDB 4.6 (#15542).
|
||||||
import time
|
import time
|
||||||
timeout = time.time()+10
|
timeout = time.time()+60
|
||||||
while (time.time()<timeout) and not (self.confirmed_master and
|
while (time.time()<timeout) and not (self.confirmed_master and
|
||||||
self.client_startupdone) :
|
self.client_startupdone) :
|
||||||
time.sleep(0.02)
|
time.sleep(0.02)
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue