From b3c1f37632dc5b3a345fb2cf27febda7fcc0279d Mon Sep 17 00:00:00 2001 From: jbergner Date: Tue, 30 Sep 2025 00:19:39 +0200 Subject: [PATCH] fix --- cmd/unified/main.go | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/cmd/unified/main.go b/cmd/unified/main.go index 3dc206a..63e4b31 100644 --- a/cmd/unified/main.go +++ b/cmd/unified/main.go @@ -670,16 +670,13 @@ func registerPublicDownloads(mux *http.ServeMux, store filesvc.MeshStore, blobs } // 3) Aus Mesh holen — EIGENER Timeout-Kontext, NICHT r.Context() - ctx, cancel := context.WithTimeout(context.Background(), 2*time.Minute) - defer cancel() - rrc, remoteName, _, _, err := meshNode.FetchBlobAny(ctx, id) + rrc, remoteName, _, _, err := meshNode.FetchBlobAny(context.Background(), id) if err != nil { http.NotFound(w, r) return } defer rrc.Close() - // Dateiname bevorzugt vom Remote, sonst Metadaten-Name filename := strings.TrimSpace(remoteName) if filename == "" { filename = it.Name