From dd0d3702ea436b5c800b14333f8c4935d89d6aa9 Mon Sep 17 00:00:00 2001 From: Ravid Brown Date: Mon, 7 Aug 2017 11:00:33 +0300 Subject: [PATCH] Extend default timeout for services health checks --- docker_test_tools/base_test.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docker_test_tools/base_test.py b/docker_test_tools/base_test.py index dcd9073..aeaa7e4 100644 --- a/docker_test_tools/base_test.py +++ b/docker_test_tools/base_test.py @@ -15,7 +15,7 @@ class BaseDockerTest(unittest.TestCase): * REQUIRED_HEALTH_CHECKS: Define the health checks (callables) to pass up before the test starts running. """ # Override this value to define the timeout (in seconds) for the required checks to pass. - CHECKS_TIMEOUT = 60 + CHECKS_TIMEOUT = 120 # Override this value to define the interval (in seconds) for sampling required checks to pass. CHECKS_INTERVAL = 1