allow max timeout 24h when creating browser sessions (#3559)

This commit is contained in:
Shuchang Zheng
2025-09-30 07:53:26 -07:00
committed by GitHub
parent f785a17b3d
commit da0db6912f

View File

@@ -4,7 +4,7 @@ from skyvern.schemas.docs.doc_strings import PROXY_LOCATION_DOC_STRING
from skyvern.schemas.runs import ProxyLocation
MIN_TIMEOUT = 5
MAX_TIMEOUT = 60 * 4 # 4 hours
MAX_TIMEOUT = 60 * 24 # 24 hours
DEFAULT_TIMEOUT = 60