From d89f1206d57a2d5fca693e347d105da0ebee54c4 Mon Sep 17 00:00:00 2001 From: Kenneth Kehl <@kkehl@flexion.us> Date: Tue, 12 Nov 2024 09:38:21 -0800 Subject: [PATCH] put max connections back to 10 --- app/clients/__init__.py | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/app/clients/__init__.py b/app/clients/__init__.py index 88565bd22..3392928e4 100644 --- a/app/clients/__init__.py +++ b/app/clients/__init__.py @@ -14,11 +14,7 @@ }, use_fips_endpoint=True, # 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, - # Reducing to 7 connections due to BrokenPipeErrors - max_pool_connections=7, + max_pool_connections=10, )