From 45995b31396bbbedd39f9923d4b6fe2924e46e95 Mon Sep 17 00:00:00 2001 From: Steven Reilly Date: Tue, 5 Nov 2024 15:21:13 -0500 Subject: [PATCH] set max_pool_connections to 7 --- app/clients/__init__.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/clients/__init__.py b/app/clients/__init__.py index 7f1509896..88565bd22 100644 --- a/app/clients/__init__.py +++ b/app/clients/__init__.py @@ -17,8 +17,8 @@ # there may come a time when increasing this helps # with job cache management. # max_pool_connections=10, - # Reducing to 4 connections due to BrokenPipeErrors - max_pool_connections=4, + # Reducing to 7 connections due to BrokenPipeErrors + max_pool_connections=7, )