From 0c017ae053f98ff20b60731c1a8b2b2400ad7aaa Mon Sep 17 00:00:00 2001 From: Fabio Hernandez Date: Wed, 15 Oct 2025 14:08:54 +0200 Subject: [PATCH] Set number of simultaneous connections to front-end server to 10 to match urllib3 default --- python/lsst/resources/http.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/python/lsst/resources/http.py b/python/lsst/resources/http.py index 20651b27..3e422f6d 100644 --- a/python/lsst/resources/http.py +++ b/python/lsst/resources/http.py @@ -129,7 +129,7 @@ class HttpResourcePathConfig: # Default number of connections to persist with both the front end and # back end servers. - DEFAULT_FRONTEND_PERSISTENT_CONNECTIONS: int = 2 + DEFAULT_FRONTEND_PERSISTENT_CONNECTIONS: int = 10 DEFAULT_BACKEND_PERSISTENT_CONNECTIONS: int = 1 # Accepted digest algorithms