Skip to content

Commit 04f621e

Browse files
authored
fix: data race in ingester test (#15465)
1 parent 4d71ca3 commit 04f621e

File tree

2 files changed

+6
-4
lines changed

2 files changed

+6
-4
lines changed

‎pkg/ingester/ingester_test.go

+4-2
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,8 @@ import (
1111
"testing"
1212
"time"
1313

14+
"go.uber.org/atomic"
15+
1416
"github.com/go-kit/log"
1517
"github.com/go-kit/log/level"
1618
"github.com/grafana/dskit/backoff"
@@ -1498,7 +1500,7 @@ func jsonLine(ts int64, i int) string {
14981500

14991501
type readRingMock struct {
15001502
replicationSet ring.ReplicationSet
1501-
getAllHealthyCallsCount int
1503+
getAllHealthyCallsCount atomic.Int32
15021504
tokenRangesByIngester map[string]ring.TokenRanges
15031505
}
15041506

@@ -1538,7 +1540,7 @@ func (r *readRingMock) BatchGet(_ []uint32, _ ring.Operation) ([]ring.Replicatio
15381540
}
15391541

15401542
func (r *readRingMock) GetAllHealthy(_ ring.Operation) (ring.ReplicationSet, error) {
1541-
r.getAllHealthyCallsCount++
1543+
r.getAllHealthyCallsCount.Add(1)
15421544
return r.replicationSet, nil
15431545
}
15441546

‎pkg/ingester/recalculate_owned_streams_test.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -25,12 +25,12 @@ func Test_recalculateOwnedStreams_newRecalculateOwnedStreamsIngester(t *testing.
2525
}, 0)
2626
strategy := newOwnedStreamsIngesterStrategy("test", mockRing, log.NewNopLogger())
2727
service := newRecalculateOwnedStreamsSvc(mockInstancesSupplier.get, strategy, 50*time.Millisecond, log.NewNopLogger())
28-
require.Equal(t, 0, mockRing.getAllHealthyCallsCount, "ring must be called only after service's start up")
28+
require.Equal(t, int32(0), mockRing.getAllHealthyCallsCount.Load(), "ring must be called only after service's start up")
2929
ctx := context.Background()
3030
require.NoError(t, service.StartAsync(ctx))
3131
require.NoError(t, service.AwaitRunning(ctx))
3232
require.Eventually(t, func() bool {
33-
return mockRing.getAllHealthyCallsCount >= 2
33+
return mockRing.getAllHealthyCallsCount.Load() >= 2
3434
}, 1*time.Second, 50*time.Millisecond, "expected at least two runs of the iteration")
3535
}
3636

0 commit comments

Comments
 (0)