mirror of
https://github.com/VictoriaMetrics/VictoriaMetrics.git
synced 2025-01-30 15:22:07 +00:00
lib/storage: typo fix: return dstData instead of data from mergeTagToMetricIDsRows
This commit is contained in:
parent
9307de1b92
commit
2212d0e421
1 changed files with 1 additions and 1 deletions
|
@ -2358,7 +2358,7 @@ func mergeTagToMetricIDsRows(data []byte, items [][]byte) ([]byte, [][]byte) {
|
|||
dstData, dstItems = tmm.flushPendingMetricIDs(dstData, dstItems, mpPrev)
|
||||
}
|
||||
putTagToMetricIDsRowsMerger(tmm)
|
||||
return data, dstItems
|
||||
return dstData, dstItems
|
||||
}
|
||||
|
||||
// maxMetricIDsPerRow limits the number of metricIDs in tag->metricIDs row.
|
||||
|
|
Loading…
Reference in a new issue