We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d040913 commit 34d0fadCopy full SHA for 34d0fad
CHANGES.md
@@ -2,11 +2,12 @@
2
3
## [Unreleased]
4
5
-## [5.0.2] - 2025-04-03
+## [5.0.2] - 2025-04-04
6
7
### Fixed
8
9
- fix root-path handling when setting in uvicorn command
10
+- reduce `db_min_conn_size` to `1` to avoid creating too many db connections when starting the application
11
12
## [5.0.1] - 2025-03-27
13
stac_fastapi/pgstac/config.py
@@ -69,7 +69,7 @@ class PostgresSettings(BaseSettings):
69
postgres_port: int
70
postgres_dbname: str
71
72
- db_min_conn_size: int = 10
+ db_min_conn_size: int = 1
73
db_max_conn_size: int = 10
74
db_max_queries: int = 50000
75
db_max_inactive_conn_lifetime: float = 300
0 commit comments