Skip to content

Commit cde5f41

Browse files
committed
update changelog
Signed-off-by: Ahmed Hassan <[email protected]>
1 parent 370cdde commit cde5f41

File tree

3 files changed

+3
-2
lines changed

3 files changed

+3
-2
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@
1919
* [FEATURE] Distributor/Ingester: Implemented experimental feature to use gRPC stream connection for push requests. This can be enabled by setting `-distributor.use-stream-push=true`. #6580
2020
* [FEATURE] Compactor: Add support for percentage based sharding for compactors. #6738
2121
* [FEATURE] Querier: Allow choosing PromQL engine via header. #6777
22+
* [ENHANCEMENT] Querier: Support snappy and zstd response compression for `-querier.response-compression` flag. #6848
2223
* [ENHANCEMENT] Tenant Federation: Add a # of query result limit logic when the `-tenant-federation.regex-matcher-enabled` is enabled. #6845
2324
* [ENHANCEMENT] Query Frontend: Add a `cortex_slow_queries_total` metric to track # of slow queries per user. #6859
2425
* [ENHANCEMENT] Query Frontend: Change to return 400 when the tenant resolving fail. #6715

integration/query_frontend_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -224,7 +224,7 @@ func TestQueryFrontendProtobufCodec(t *testing.T) {
224224
}
225225

226226
func TestQuerierToQueryFrontendCompression(t *testing.T) {
227-
for _, compression := range []string{"gzip","zstd","snappy",""} {
227+
for _, compression := range []string{"gzip", "zstd", "snappy", ""} {
228228
runQueryFrontendTest(t, queryFrontendTestConfig{
229229
testMissingMetricName: false,
230230
querySchedulerEnabled: true,

pkg/api/queryapi/compression_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -156,4 +156,4 @@ func TestCompressionHandler_ServeHTTP(t *testing.T) {
156156
require.Equal(t, gzipEncoding, rec.Header().Get(contentEncodingHeader))
157157
decompressed := decompress(t, gzipEncoding, rec.Body.Bytes())
158158
require.Equal(t, []byte("hello"), decompressed)
159-
}
159+
}

0 commit comments

Comments
 (0)