From e3b879d688c59fa1fe455fd8b291b643b8c5c494 Mon Sep 17 00:00:00 2001 From: Umputun Date: Tue, 13 Feb 2018 11:58:04 -0600 Subject: [PATCH] lint: ignore body close err --- app/main.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/main.go b/app/main.go index f1739d2c..e077260c 100644 --- a/app/main.go +++ b/app/main.go @@ -113,7 +113,7 @@ func main() { log.Printf("[WARN] failed to refresh cached list for %s, %s", site, err) return } - resp.Body.Close() + _ = resp.Body.Close() } })