Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-pages.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKassio Borges <kassioborgesm@gmail.com>2023-04-11 16:10:50 +0300
committerKassio Borges <kassioborgesm@gmail.com>2023-04-12 14:02:13 +0300
commit4818095bc357ec6415e939a321af507b2c42daad (patch)
tree7c47f3a19a8bf701b9926bf901ea5c4394a382be /internal/handlers
parent29ac8e1a6ad17403f74c438c36e1637ac555ae20 (diff)
Update golangci-lint tool
Diffstat (limited to 'internal/handlers')
-rw-r--r--internal/handlers/handlers.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/internal/handlers/handlers.go b/internal/handlers/handlers.go
index 80c771d5..5b15fba1 100644
--- a/internal/handlers/handlers.go
+++ b/internal/handlers/handlers.go
@@ -62,7 +62,7 @@ func (a *Handlers) HandleArtifactRequest(w http.ResponseWriter, r *http.Request)
return true
}
- // nolint: bodyclose // false positive
+ //nolint: bodyclose // false positive
// a.checkIfLoginRequiredOrInvalidToken returns a response.Body, closing this body is responsibility
// of the TryMakeRequest implementation
return a.Artifact.TryMakeRequest(w, r, token, a.checkIfLoginRequiredOrInvalidToken(w, r, token))