From 20d67f6f9f21e03191da9a9c1d04a9ad4c31647f Mon Sep 17 00:00:00 2001 From: Gabriel Augendre Date: Wed, 26 Jan 2022 12:22:03 +0100 Subject: [PATCH] Update timeout in check alive --- tasks.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tasks.py b/tasks.py index 2912ef3..bbc2a13 100644 --- a/tasks.py +++ b/tasks.py @@ -72,7 +72,7 @@ def check_alive(ctx: Context) -> None: print("Server is up & running") return except requests.exceptions.HTTPError as e: - time.sleep(1) + time.sleep(2) exception = e raise RuntimeError("Failed to reach the server") from exception