From b27dec5ca589088aa98114741795b3ae630d397c Mon Sep 17 00:00:00 2001 From: Matthew Zhou Date: Mon, 22 Sep 2025 18:51:22 -0700 Subject: [PATCH] chore: Bump pg pool timeout (#4870) Bump pg pool timeout --- letta/settings.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/letta/settings.py b/letta/settings.py index 8b9bf39a..d4fd925d 100644 --- a/letta/settings.py +++ b/letta/settings.py @@ -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