lib/storage: typo fix: return dstData instead of data from mergeTagToMetricIDsRows

This commit is contained in:
Aliaksandr Valialkin 2019-09-24 19:32:06 +03:00
parent 9307de1b92
commit 2212d0e421

View file

@ -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.