remove reference to metrics after reslicing

Signed-off-by: Dima Kozlov <hummerd@mail.ru>
This commit is contained in:
Dima Kozlov 2020-07-22 23:12:23 +03:00
parent d3accfda21
commit 0c48254b62
1 changed files with 4 additions and 0 deletions

View File

@ -276,7 +276,9 @@ func (m *metricMap) deleteByHashWithLabelValues(
}
if len(metrics) > 1 {
old := metrics
m.metrics[h] = append(metrics[:i], metrics[i+1:]...)
old[len(old)-1] = metricWithLabelValues{}
} else {
delete(m.metrics, h)
}
@ -302,7 +304,9 @@ func (m *metricMap) deleteByHashWithLabels(
}
if len(metrics) > 1 {
old := metrics
m.metrics[h] = append(metrics[:i], metrics[i+1:]...)
old[len(old)-1] = metricWithLabelValues{}
} else {
delete(m.metrics, h)
}