Skip to content

Commit

Permalink
Merge pull request #1384 from GSA/reduce_connections
Browse files Browse the repository at this point in the history
reduce number of pool connections
  • Loading branch information
xlorepdarkhelm authored Nov 1, 2024
2 parents 05e268a + 625f25f commit 38c566e
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion app/clients/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,9 @@
# 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,
# max_pool_connections=10,
# Reducing to 4 connections due to BrokenPipeErrors
max_pool_connections=4,
)


Expand Down

0 comments on commit 38c566e

Please sign in to comment.