From b7b79fa9c2b14e3d7a6da8f9f87c6e2c36ca5cf9 Mon Sep 17 00:00:00 2001 From: Barrett Ruth Date: Fri, 6 Mar 2026 21:33:16 -0500 Subject: [PATCH] fix(timeouts): reduce AtCoder submit nav timeout to 20s --- scrapers/timeouts.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scrapers/timeouts.py b/scrapers/timeouts.py index fa1e7ce..715b07f 100644 --- a/scrapers/timeouts.py +++ b/scrapers/timeouts.py @@ -7,7 +7,7 @@ BROWSER_NAV_TIMEOUT = 10000 BROWSER_SUBMIT_NAV_TIMEOUT: defaultdict[str, int] = defaultdict( lambda: BROWSER_NAV_TIMEOUT ) -BROWSER_SUBMIT_NAV_TIMEOUT["atcoder"] = BROWSER_NAV_TIMEOUT * 4 +BROWSER_SUBMIT_NAV_TIMEOUT["atcoder"] = BROWSER_NAV_TIMEOUT * 2 BROWSER_SUBMIT_NAV_TIMEOUT["codeforces"] = BROWSER_NAV_TIMEOUT * 2 BROWSER_TURNSTILE_POLL = 5000 BROWSER_ELEMENT_WAIT = 10000