mirror of
https://github.com/prometheus/prometheus.git
synced 2024-11-09 23:24:05 -08:00
14 lines
519 B
Plaintext
14 lines
519 B
Plaintext
|
// Don't flag lines such as "io.Copy(ioutil.Discard, resp.Body)".
|
||
|
io.Copy
|
||
|
// The next two are used in HTTP handlers, any error is handled by the server itself.
|
||
|
io.WriteString
|
||
|
(net/http.ResponseWriter).Write
|
||
|
// No need to check for errors on server's shutdown.
|
||
|
(*net/http.Server).Shutdown
|
||
|
|
||
|
// Never check for logger errors.
|
||
|
(github.com/go-kit/kit/log.Logger).Log
|
||
|
|
||
|
// Never check for rollback errors as Rollback() is called when a previous error was detected.
|
||
|
(github.com/prometheus/prometheus/storage.Appender).Rollback
|