Skip to content

Commit

Permalink
Fixed distributor mixed HA samples integration test lint error
Browse files Browse the repository at this point in the history
Signed-off-by: eduardscaueru <edi_scaueru@yahoo.com>
  • Loading branch information
eduardscaueru committed Nov 16, 2024
1 parent 7df8ed3 commit d06bd61
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
4 changes: 3 additions & 1 deletion docs/configuration/v1-guarantees.md
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,9 @@ Currently experimental features are:
- Metric relabeling in the distributor.
- Scalable query-frontend (when using query-scheduler)
- Ingester: do not unregister from ring on shutdown (`-ingester.unregister-on-shutdown=false`)
- Distributor: do not extend writes on unhealthy ingesters (`-distributor.extend-writes=false`)
- Distributor:
- Do not extend writes on unhealthy ingesters (`-distributor.extend-writes=false`)
- Accept multiple HA pairs in the same request (enabled via `-experimental.distributor.ha-tracker.mixed-ha-samples=true`)
- Tenant Deletion in Purger, for blocks storage.
- Query-frontend: query stats tracking (`-frontend.query-stats-enabled`)
- Blocks storage bucket index
Expand Down
3 changes: 1 addition & 2 deletions integration/distributor_mixed_ha_samples_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@
package integration

import (
"fmt"
"testing"
"time"

Expand All @@ -20,7 +19,7 @@ import (
func TestDistriubtorAcceptMixedHASamplesRunningInMicroservicesMode(t *testing.T) {
const blockRangePeriod = 5 * time.Minute

t.Run(fmt.Sprintf("%s", "Distriubtor accept mixed HA samples in the same request"), func(t *testing.T) {
t.Run("Distributor accept mixed HA samples in the same request", func(t *testing.T) {
s, err := e2e.NewScenario(networkName)
require.NoError(t, err)
defer s.Close()
Expand Down

0 comments on commit d06bd61

Please sign in to comment.