chore: Bump pg pool timeout (#4870)

Bump pg pool timeout
This commit is contained in:
Matthew Zhou
2025-09-22 18:51:22 -07:00
committed by Caren Thomas
parent 16d666a434
commit b27dec5ca5

View File

@@ -227,7 +227,7 @@ class Settings(BaseSettings):
pg_uri: Optional[str] = default_pg_uri # option to specify full uri
pg_pool_size: int = 25 # Concurrent connections
pg_max_overflow: int = 10 # Overflow limit
pg_pool_timeout: int = 30 # Seconds to wait for a connection
pg_pool_timeout: int = 90 # Seconds to wait for a connection
pg_pool_recycle: int = 1800 # When to recycle connections
pg_echo: bool = False # Logging
pool_pre_ping: bool = True # Pre ping to check for dead connections