mirror of
https://github.com/VictoriaMetrics/VictoriaMetrics.git
synced 2024-11-21 14:44:00 +00:00
lib/storage: typo fix: return dstData instead of data from mergeTagToMetricIDsRows
This commit is contained in:
parent
a6086cde78
commit
ef2296e420
1 changed files with 1 additions and 1 deletions
|
@ -2287,7 +2287,7 @@ func mergeTagToMetricIDsRows(data []byte, items [][]byte) ([]byte, [][]byte) {
|
||||||
dstData, dstItems = tmm.flushPendingMetricIDs(dstData, dstItems, mpPrev)
|
dstData, dstItems = tmm.flushPendingMetricIDs(dstData, dstItems, mpPrev)
|
||||||
}
|
}
|
||||||
putTagToMetricIDsRowsMerger(tmm)
|
putTagToMetricIDsRowsMerger(tmm)
|
||||||
return data, dstItems
|
return dstData, dstItems
|
||||||
}
|
}
|
||||||
|
|
||||||
// maxMetricIDsPerRow limits the number of metricIDs in tag->metricIDs row.
|
// maxMetricIDsPerRow limits the number of metricIDs in tag->metricIDs row.
|
||||||
|
|
Loading…
Reference in a new issue