Skip to content

Commit b8168a8

Browse files
authored
fix: data race in distributor tests (#15423)
1 parent bdbb009 commit b8168a8

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

‎pkg/distributor/distributor_test.go

+2
Original file line numberDiff line numberDiff line change
@@ -583,6 +583,8 @@ func TestDistributorPushToKafka(t *testing.T) {
583583
require.Equal(t, 1, len(ingesters[0].pushed))
584584
require.Equal(t, 1, len(ingesters[1].pushed))
585585
require.Eventually(t, func() bool {
586+
ingesters[2].mu.Lock()
587+
defer ingesters[2].mu.Unlock()
586588
return len(ingesters[2].pushed) == 1
587589
}, time.Second, 10*time.Millisecond)
588590
})

0 commit comments

Comments
 (0)