From d1a63e4173a1cec42b591dff44cd755f628297f5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C5=81ukasz=20Magiera?= Date: Mon, 22 Nov 2021 17:50:12 +0100 Subject: [PATCH] remote store: Remove debug printf --- extern/sector-storage/stores/remote.go | 1 - 1 file changed, 1 deletion(-) diff --git a/extern/sector-storage/stores/remote.go b/extern/sector-storage/stores/remote.go index aa6075e62..a5e84bc19 100644 --- a/extern/sector-storage/stores/remote.go +++ b/extern/sector-storage/stores/remote.go @@ -305,7 +305,6 @@ func (r *Remote) checkAllocated(ctx context.Context, url string, spt abi.Registe return false, xerrors.Errorf("request: %w", err) } req.Header = r.auth.Clone() - fmt.Printf("req using header: %#v \n", r.auth) req = req.WithContext(ctx) resp, err := http.DefaultClient.Do(req)