From 4a055f1b248dcd1ee0c22ab2ff950a7fc6c83991 Mon Sep 17 00:00:00 2001 From: Todd Short Date: Tue, 21 Jul 2026 11:01:24 -0400 Subject: [PATCH] UPSTREAM: : OCPBUGS-99298: increase catalog HTTP client timeout from 10s to 5m The 10-second timeout was too aggressive for large catalog responses. Increase it to 5 minutes to avoid timeouts when fetching catalogs. Signed-off-by: Todd Short --- internal/shared/util/http/httputil.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/internal/shared/util/http/httputil.go b/internal/shared/util/http/httputil.go index f5a982d2de..7bc65dd534 100644 --- a/internal/shared/util/http/httputil.go +++ b/internal/shared/util/http/httputil.go @@ -7,7 +7,7 @@ import ( ) func BuildHTTPClient(cpw *CertPoolWatcher) (*http.Client, error) { - httpClient := &http.Client{Timeout: 10 * time.Second} + httpClient := &http.Client{Timeout: 5 * time.Minute} pool, _, err := cpw.Get() if err != nil {