Increase default PostgreSQL max connections from 20 to 50
This commit is contained in:
parent
55176a24b4
commit
6b3a341977
1 changed files with 1 additions and 1 deletions
|
|
@ -1323,7 +1323,7 @@ class ClientManager:
|
|||
),
|
||||
"max_connections": os.environ.get(
|
||||
"POSTGRES_MAX_CONNECTIONS",
|
||||
config.get("postgres", "max_connections", fallback=20),
|
||||
config.get("postgres", "max_connections", fallback=50),
|
||||
),
|
||||
# SSL configuration
|
||||
"ssl_mode": os.environ.get(
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue