bump max session timeout to 4 hours (#3022)

This commit is contained in:
Shuchang Zheng
2025-07-23 18:22:05 -07:00
committed by GitHub
parent a27dea46d9
commit 42bbdda1d4

View File

@@ -1,7 +1,7 @@
from pydantic import BaseModel, Field
MIN_TIMEOUT = 5
MAX_TIMEOUT = 120
MAX_TIMEOUT = 60 * 4 # 4 hours
DEFAULT_TIMEOUT = 60