Issue #11766: increase countdown waiting for a pool of processes to start

up.  Hopefully fixes transient buildbot failures.
This commit is contained in:
Antoine Pitrou 2011-04-06 22:51:17 +02:00
parent 3178b7dee1
commit 540ab064e2
1 changed files with 2 additions and 1 deletions

View File

@ -1170,7 +1170,8 @@ class _TestPoolWorkerLifetime(BaseTestCase):
# Refill the pool # Refill the pool
p._repopulate_pool() p._repopulate_pool()
# Wait until all workers are alive # Wait until all workers are alive
countdown = 5 # (countdown * DELTA = 5 seconds max startup process time)
countdown = 50
while countdown and not all(w.is_alive() for w in p._pool): while countdown and not all(w.is_alive() for w in p._pool):
countdown -= 1 countdown -= 1
time.sleep(DELTA) time.sleep(DELTA)