lower default page loading time from 90 seconds to 60 seconds (#4076)

This commit is contained in:
Shuchang Zheng
2025-11-22 21:07:34 -08:00
committed by GitHub
parent 7729d7cffe
commit 2608c02f7a
5 changed files with 5 additions and 5 deletions

View File

@@ -657,7 +657,7 @@ async def run_task_v2_helper(
# Page failed to load properly, fallback to Google
if page:
try:
await page.goto(fallback_url, timeout=15000)
await page.goto(fallback_url, timeout=settings.BROWSER_LOADING_TIMEOUT_MS)
fallback_occurred = True
except Exception:
LOG.exception("Failed to load Google fallback", exc_info=True, url=url, current_url=current_url)