Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions exporter/datadogexporter/metrics_exporter.go
Original file line number Diff line number Diff line change
Expand Up @@ -154,6 +154,10 @@
}
defer resp.Body.Close()

// We must read the full response body from the http request to ensure that connections can be
// properly re-used. https://pkg.go.dev/net/http#Client.Do
_, err = io.Copy(io.Discard, resp.Body)

Check failure on line 159 in exporter/datadogexporter/metrics_exporter.go

View workflow job for this annotation

GitHub Actions / govulncheck (exporter-1)

undefined: io

Check failure on line 159 in exporter/datadogexporter/metrics_exporter.go

View workflow job for this annotation

GitHub Actions / govulncheck (exporter-1)

undefined: io

if resp.StatusCode >= 400 {
return clientutil.WrapError(fmt.Errorf("error when sending payload to %s: %s", sketches.SketchSeriesEndpoint, resp.Status), resp)
}
Expand Down
Loading