From 981c879977d7221082c3a2a2c8058b6bfe6bb4ff Mon Sep 17 00:00:00 2001 From: Srikar Budda Date: Thu, 13 Nov 2025 10:23:06 -0500 Subject: [PATCH 1/2] Increased the connect and read timeouts. --- monitoring/monitorlib/fetch/__init__.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/monitoring/monitorlib/fetch/__init__.py b/monitoring/monitorlib/fetch/__init__.py index 455c9417d8..0800be3d1c 100644 --- a/monitoring/monitorlib/fetch/__init__.py +++ b/monitoring/monitorlib/fetch/__init__.py @@ -24,10 +24,10 @@ @dataclass class Settings: - connect_timeout_seconds: float | None = 3.1 + connect_timeout_seconds: float | None = 10.1 """Number of seconds to allow for establishing a connection.""" - read_timeout_seconds: float | None = 6.1 + read_timeout_seconds: float | None = 20.1 """Number of seconds to allow for a request to complete after establishing a connection.""" attempts: int = 2 From 30492567745c9ba25c01a4e0265ab3d159c20225 Mon Sep 17 00:00:00 2001 From: Srikar Budda Date: Fri, 14 Nov 2025 07:09:29 -0500 Subject: [PATCH 2/2] increasing the timeouts to 20/40. --- monitoring/monitorlib/fetch/__init__.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/monitoring/monitorlib/fetch/__init__.py b/monitoring/monitorlib/fetch/__init__.py index 0800be3d1c..0aff243c96 100644 --- a/monitoring/monitorlib/fetch/__init__.py +++ b/monitoring/monitorlib/fetch/__init__.py @@ -24,10 +24,10 @@ @dataclass class Settings: - connect_timeout_seconds: float | None = 10.1 + connect_timeout_seconds: float | None = 20.1 """Number of seconds to allow for establishing a connection.""" - read_timeout_seconds: float | None = 20.1 + read_timeout_seconds: float | None = 40.1 """Number of seconds to allow for a request to complete after establishing a connection.""" attempts: int = 2