From 61366360ff395427a76472e407debad7d3cbecdf Mon Sep 17 00:00:00 2001 Message-Id: <61366360ff395427a76472e407debad7d3cbecdf.1715374049.git.mdw@distorted.org.uk> From: Mark Wooding Date: Sat, 1 Nov 2008 12:44:32 +0000 Subject: [PATCH] Wait a bit long for subprocesses to clear off. Organization: Straylight/Edgeware From: Richard Kettlewell The real fix is to make the server wait more reliably for its subprocesses to terminate when it's shut down. --- tests/dtest.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/dtest.py b/tests/dtest.py index a1ccd24..1c62dc5 100644 --- a/tests/dtest.py +++ b/tests/dtest.py @@ -293,7 +293,7 @@ Stop the daemon if it has not stopped already""" print " daemon already stopped" daemon = None # Wait a bit for subprocess to finish too, to try to avoid stupid races - time.sleep(1) + time.sleep(2) def run(module=None, report=True): """dtest.run(MODULE) -- [mdw]