Revert "fix: force statement_timeout=0 on all database connections" (#9226)

Revert "fix: force statement_timeout=0 on all database connections (#9184)"

This reverts commit 0d3d9ea76bae586520ae8f50badb203ffd441675.
This commit is contained in:
Kian Jones
2026-01-30 16:29:23 -08:00
committed by Caren Thomas
parent ddd1a11a93
commit 68eb076135

View File

@@ -44,7 +44,6 @@ if not settings.disable_sqlalchemy_pooling:
"prepared_statement_name_func": lambda: f"__asyncpg_{uuid.uuid4()}__",
"statement_cache_size": 0,
"prepared_statement_cache_size": 0,
"server_settings": {"statement_timeout": "0"},
}
# Only add SSL if not already specified in connection string
if "sslmode" not in async_pg_uri and "ssl" not in async_pg_uri: