From f5a313c74b8a7c7cb9c99a992cf077755f6da990 Mon Sep 17 00:00:00 2001 From: Suchintan Date: Fri, 10 Oct 2025 13:17:46 -0400 Subject: [PATCH] Update download blcok timeout to 2 minutes (from 20 minutes (#3684) --- skyvern-frontend/src/api/types.ts | 2 +- skyvern/constants.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/skyvern-frontend/src/api/types.ts b/skyvern-frontend/src/api/types.ts index c5aad451..6398aa2a 100644 --- a/skyvern-frontend/src/api/types.ts +++ b/skyvern-frontend/src/api/types.ts @@ -489,4 +489,4 @@ export type PylonEmailHash = { hash: string; }; -export const BROWSER_DOWNLOAD_TIMEOUT_SECONDS = 600 as const; +export const BROWSER_DOWNLOAD_TIMEOUT_SECONDS = 120 as const; diff --git a/skyvern/constants.py b/skyvern/constants.py index 8ec5d796..accb9317 100644 --- a/skyvern/constants.py +++ b/skyvern/constants.py @@ -9,7 +9,7 @@ REPO_ROOT_DIR = SKYVERN_DIR.parent INPUT_TEXT_TIMEOUT = 120000 # 2 minutes PAGE_CONTENT_TIMEOUT = 300 # 5 mins BROWSER_CLOSE_TIMEOUT = 180 # 3 minute -BROWSER_DOWNLOAD_MAX_WAIT_TIME = 1200 # 20 minute +BROWSER_DOWNLOAD_MAX_WAIT_TIME = 120 # 2 minute BROWSER_DOWNLOAD_TIMEOUT = 600 # 10 minute DOWNLOAD_FILE_PREFIX = "downloads" SAVE_DOWNLOADED_FILES_TIMEOUT = 180