From 16783cdb9b733cb89c3f9f6e8236da46aec04336 Mon Sep 17 00:00:00 2001 From: Joe Lanford Date: Thu, 25 Jun 2026 10:26:17 -0400 Subject: [PATCH] :bug: OCPBUGS-92037: 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. See https://redhat.atlassian.net/browse/OCPBUGS-92037 for details of the bug. --- internal/operator-controller/catalogmetadata/client/httputil.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/internal/operator-controller/catalogmetadata/client/httputil.go b/internal/operator-controller/catalogmetadata/client/httputil.go index 976157616..0a264d3fb 100644 --- a/internal/operator-controller/catalogmetadata/client/httputil.go +++ b/internal/operator-controller/catalogmetadata/client/httputil.go @@ -11,7 +11,7 @@ import ( ) func BuildHTTPClient(cpw *httputil.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 {