Skip to content

Commit f7f8f3a

Browse files
committed
fix: Unset Content-Encoding header when uncompressed
Fixes: #1595 Signed-off-by: Manuel Rüger <[email protected]>
1 parent 2254d6c commit f7f8f3a

File tree

2 files changed

+5
-3
lines changed

2 files changed

+5
-3
lines changed

prometheus/promhttp/http.go

+4-2
Original file line numberDiff line numberDiff line change
@@ -203,8 +203,10 @@ func HandlerForTransactional(reg prometheus.TransactionalGatherer, opts HandlerO
203203

204204
defer closeWriter()
205205

206-
rsp.Header().Set(contentEncodingHeader, encodingHeader)
207-
206+
// Set Content-Encoding only when data is compressed
207+
if encodingHeader != string(Identity) {
208+
rsp.Header().Set(contentEncodingHeader, encodingHeader)
209+
}
208210
enc := expfmt.NewEncoder(w, contentType)
209211

210212
// handleError handles the error according to opts.ErrorHandling

prometheus/promhttp/http_test.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -267,7 +267,7 @@ func TestInstrumentMetricHandler(t *testing.T) {
267267
t.Errorf("got HTTP status code %d, want %d", got, want)
268268
}
269269

270-
if got, want := writer.Header().Get(contentEncodingHeader), string(Identity); got != want {
270+
if got, want := writer.Header().Get(contentEncodingHeader), ""; got != want {
271271
t.Errorf("got HTTP content encoding header %s, want %s", got, want)
272272
}
273273

0 commit comments

Comments
 (0)