reduce max connections to 10

This commit is contained in:
Kenneth Kehl
2024-09-27 14:18:42 -07:00
parent e99f4bc6b5
commit 0d82f89bb5

View File

@@ -13,7 +13,10 @@ AWS_CLIENT_CONFIG = Config(
"addressing_style": "virtual",
},
use_fips_endpoint=True,
max_pool_connections=50,
# This is the default but just for doc sake
# there may come a time when increasing this helps
# with job cache management
max_pool_connections=10,
)