fix db connection pool

This commit is contained in:
Kenneth Kehl
2025-01-09 10:53:33 -08:00
parent 4293da640a
commit 6aae2c7aae
4 changed files with 21 additions and 4 deletions

View File

@@ -13,8 +13,7 @@ AWS_CLIENT_CONFIG = Config(
"addressing_style": "virtual",
},
use_fips_endpoint=True,
# This is the default but just for doc sake
max_pool_connections=10,
max_pool_connections=50, # This should be equal or greater than our celery concurrency
)