From cf44fd6ee44e6f6f67b6d9d24d877aca8ea35ef3 Mon Sep 17 00:00:00 2001 From: Bob Mottram Date: Wed, 27 Jul 2022 20:44:53 +0100 Subject: [PATCH] Longer watchdog delay --- importFollowing.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/importFollowing.py b/importFollowing.py index c81bc524d..277afe365 100644 --- a/importFollowing.py +++ b/importFollowing.py @@ -208,7 +208,7 @@ def run_import_following_watchdog(project_version: str, httpd) -> None: httpd.thrImportFollowing.clone(run_import_following) httpd.thrImportFollowing.start() while True: - time.sleep(20) + time.sleep(50) if httpd.thrImportFollowing.is_alive(): continue httpd.thrImportFollowing.kill()