From 7c79143a149d1618287ca0b526826ee04167f7d9 Mon Sep 17 00:00:00 2001 From: oobabooga <112222186+oobabooga@users.noreply.github.com> Date: Fri, 20 Mar 2026 15:03:49 -0300 Subject: [PATCH] API: Fix _start_cloudflared raising after first attempt instead of exhausting retries --- modules/api/utils.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/api/utils.py b/modules/api/utils.py index f021c378..e8c505f6 100644 --- a/modules/api/utils.py +++ b/modules/api/utils.py @@ -50,4 +50,4 @@ def _start_cloudflared(port: int, tunnel_id: str, max_attempts: int = 3, on_star traceback.print_exc() time.sleep(3) - raise Exception('Could not start cloudflared.') + raise Exception('Could not start cloudflared.')