Skip to content

Commit 3bd1fdc

Browse files
committed
fixing integ tests, changelog
Signed-off-by: Shvejan Mutheboyina <shvejan@amazon.com>
1 parent 7a1fcbf commit 3bd1fdc

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
## master / unreleased
44
* [ENHANCEMENT] Metrics Helper: Add native histogram support for aggregating and merging, including dual-format histogram handling that exposes both native and classic bucket formats. #7359
55
* [ENHANCEMENT] Cache: Add per-tenant TTL configuration for query results cache to control cache expiration on a per-tenant basis with separate TTLs for regular and out-of-order data. #7357
6-
* [CHANGE] Querier: Make query time range configurations per-tenant: `query_ingesters_within`, `query_store_after`, and `shuffle_sharding_ingesters_lookback_period`. #7160
6+
* [CHANGE] Querier: Make query time range configurations per-tenant: `query_ingesters_within`, `query_store_after`, and `shuffle_sharding_ingesters_lookback_period`. Uses `model.Duration` instead of `time.Duration` to support serialization but has minimum unit of 1ms (nanoseconds/microseconds not supported). #7160
77
* [ENHANCEMENT] Tenant Federation: Add a local cache to regex resolver. #7363
88
* [ENHANCEMENT] Query Scheduler: Add `cortex_query_scheduler_tracked_requests` metric to track the current number of requests held by the scheduler. #7355
99
* [BUGFIX] Fix nil when ingester_query_max_attempts > 1. #7369

integration/ingester_sharding_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ func TestIngesterSharding(t *testing.T) {
6464
if testData.shardingStrategy == "shuffle-sharding" {
6565
// Enable shuffle sharding on read path but not lookback, otherwise all ingesters would be
6666
// queried being just registered.
67-
flags["-limits.shuffle-sharding-ingesters-lookback-period"] = "1ns"
67+
flags["-limits.shuffle-sharding-ingesters-lookback-period"] = "1ms"
6868
}
6969

7070
// Start dependencies.

0 commit comments

Comments
 (0)