lint: bump golangci-lint 1.21.0 (#391)

Signed-off-by: Bobby DeSimone <bobbydesimone@gmail.com>
This commit is contained in:
Bobby DeSimone 2019-11-19 19:58:11 -08:00 committed by GitHub
parent ec9607d1d5
commit 6743accd74
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 11 additions and 7 deletions

View file

@ -151,7 +151,7 @@ func (p *Proxy) Verify(verifyOnly bool) http.Handler {
w.Header().Set("Content-Type", "text/plain; charset=utf-8")
w.Header().Set("X-Content-Type-Options", "nosniff")
w.WriteHeader(http.StatusOK)
fmt.Fprintf(w, fmt.Sprintf("Access to %s is allowed.", uri.Host))
fmt.Fprintf(w, "Access to %s is allowed.", uri.Host)
})
}