From 3363118ba0252702202d39736cfb38d4bbc645e2 Mon Sep 17 00:00:00 2001 From: Thomas Haller Date: Sun, 13 Oct 2019 13:23:40 +0200 Subject: [PATCH] clients/tests: increase timeout for asynchronous jobs The default timeout is really only here to abort the test when it definitely failed to avoid keeping it hanging forever. It's not part of any strict assertions and should be large. Fixes: bb4b749595bc ('clients/tests: don't wait for first job before scheduling parallel jobs') --- clients/tests/test-client.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/clients/tests/test-client.py b/clients/tests/test-client.py index 816ed069f9..f42a6d683f 100755 --- a/clients/tests/test-client.py +++ b/clients/tests/test-client.py @@ -444,7 +444,7 @@ class AsyncProcess(): args, env, complete_cb, - max_waittime_msec = 3000): + max_waittime_msec = 20000): self._args = list(args) self._env = env self._complete_cb = complete_cb