From 0eb870f54e70c0de92027a5c361cfae2dba1317f Mon Sep 17 00:00:00 2001 From: "Auke L. Klazema" <klazema@astron.nl> Date: Fri, 9 Oct 2020 09:13:26 +0200 Subject: [PATCH] TMSS-367: Set timeout of check on running TMSS to 60 The timeout of 30 is to short. The underlying cause is not fully known yet. But for some reason on both tmss-ua and scu the timeout of 30 causes the system to restart all the time. --- SAS/TMSS/test/test_utils.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/SAS/TMSS/test/test_utils.py b/SAS/TMSS/test/test_utils.py index 52e18d0a8a1..2edeaae66b2 100644 --- a/SAS/TMSS/test/test_utils.py +++ b/SAS/TMSS/test/test_utils.py @@ -214,7 +214,7 @@ class TMSSDjangoServerInstance(): # wait for server to be up and running.... # or exit via TimeoutError - self.check_running_server(timeout=30) + self.check_running_server(timeout=60) def stop(self): ''' -- GitLab