Merge pull request #9053 from codesome/histo-race

Fix TSDB race while reading histograms
This commit is contained in:
Björn Rabenstein 2021-07-05 18:25:36 +02:00 committed by GitHub
commit a979d8e1dc
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -2889,7 +2889,7 @@ func (it *memSafeIterator) Next() bool {
return false
}
it.i++
if it.Iterator.ChunkEncoding() == chunkenc.EncSHS || it.total-it.i > 4 {
if it.total-it.i > 4 {
return it.Iterator.Next()
}
return true