From 170dfef3a88c3b5e8075a3e2d3e0141912094b49 Mon Sep 17 00:00:00 2001 From: Niko Storni Date: Thu, 22 Jul 2021 04:09:16 +0200 Subject: [PATCH] fix copy pasta mistake --- store/http.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/store/http.go b/store/http.go index 63dedce..c563fa3 100644 --- a/store/http.go +++ b/store/http.go @@ -31,7 +31,7 @@ func NewHttpStore(upstream string) *HttpStore { const nameHttp = "http" -func (n *HttpStore) Name() string { return nameNoop } +func (n *HttpStore) Name() string { return nameHttp } func (n *HttpStore) Has(hash string) (bool, error) { url := n.upstream + "/blob?hash=" + hash