Disable connection pooler if env specifies it (#2222)

This commit is contained in:
Shuchang Zheng
2025-04-23 09:33:26 +08:00
committed by GitHub
parent 19e86a197a
commit bee22e5777
2 changed files with 3 additions and 1 deletions

View File

@@ -32,6 +32,7 @@ class Settings(BaseSettings):
DEBUG_MODE: bool = False
DATABASE_STRING: str = "postgresql+psycopg://skyvern@localhost/skyvern"
DATABASE_STATEMENT_TIMEOUT_MS: int = 60000
DISABLE_CONNECTION_POOL: bool = False
PROMPT_ACTION_HISTORY_WINDOW: int = 1
TASK_RESPONSE_ACTION_SCREENSHOT_COUNT: int = 3