mirror of
https://github.com/prometheus/prometheus.git
synced 2025-03-05 20:59:13 -08:00
storage: Remove race condition from TestLoop
This commit is contained in:
parent
34767c2221
commit
752fac60ae
|
@ -840,10 +840,15 @@ func TestLoop(t *testing.T) {
|
||||||
storage.Append(s)
|
storage.Append(s)
|
||||||
}
|
}
|
||||||
storage.WaitForIndexing()
|
storage.WaitForIndexing()
|
||||||
series, _ := storage.fpToSeries.get(model.Metric{}.FastFingerprint())
|
fp := model.Metric{}.FastFingerprint()
|
||||||
|
series, _ := storage.fpToSeries.get(fp)
|
||||||
|
storage.fpLocker.Lock(fp)
|
||||||
cdsBefore := len(series.chunkDescs)
|
cdsBefore := len(series.chunkDescs)
|
||||||
|
storage.fpLocker.Unlock(fp)
|
||||||
time.Sleep(fpMaxWaitDuration + time.Second) // TODO(beorn7): Ugh, need to wait for maintenance to kick in.
|
time.Sleep(fpMaxWaitDuration + time.Second) // TODO(beorn7): Ugh, need to wait for maintenance to kick in.
|
||||||
|
storage.fpLocker.Lock(fp)
|
||||||
cdsAfter := len(series.chunkDescs)
|
cdsAfter := len(series.chunkDescs)
|
||||||
|
storage.fpLocker.Unlock(fp)
|
||||||
storage.Stop()
|
storage.Stop()
|
||||||
if cdsBefore <= cdsAfter {
|
if cdsBefore <= cdsAfter {
|
||||||
t.Errorf(
|
t.Errorf(
|
||||||
|
|
Loading…
Reference in a new issue