From 0624688442e2902943f269b662cafa71ccf05c66 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/httputil/httputil.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/internal/httputil/httputil.go b/internal/httputil/httputil.go index d620866e4d..288a14eb11 100644 --- a/internal/httputil/httputil.go +++ b/internal/httputil/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 {