From b7616f0123100d8043ee30d5bd66a483f74568ae Mon Sep 17 00:00:00 2001 From: Josh Sandlin Date: Fri, 31 Jul 2026 14:47:14 -0400 Subject: [PATCH] was seeing a lot of timeout retries here when reduced to 5 seconds --- sidecar/internal/registry/registry.go | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/sidecar/internal/registry/registry.go b/sidecar/internal/registry/registry.go index 8bc4f0f..9f35789 100644 --- a/sidecar/internal/registry/registry.go +++ b/sidecar/internal/registry/registry.go @@ -21,11 +21,7 @@ func New(baseURL string) *Client { return &Client{ baseURL: baseURL, http: &http.Client{ - // A manifest delete is a metadata operation against a zot running - // alongside this process, so it should be fast. Failing quickly - // keeps one wedged tag from stalling the rest of the sweep; the row - // stays in the store and is retried on the next tick. - Timeout: 5 * time.Second, + Timeout: 30 * time.Second, }, } }