mirror of
https://github.com/VictoriaMetrics/VictoriaMetrics.git
synced 2024-11-21 14:44:00 +00:00
count inmemoryParts that have not been taken for merge (#5447)
This commit is contained in:
parent
9d17fc7004
commit
333bda8702
1 changed files with 1 additions and 1 deletions
|
@ -578,7 +578,7 @@ func (ddb *datadb) needAssistedMergeForInmemoryPartsLocked() bool {
|
|||
}
|
||||
n := 0
|
||||
for _, pw := range ddb.inmemoryParts {
|
||||
if pw.isInMerge {
|
||||
if !pw.isInMerge {
|
||||
n++
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue