mirror of
https://github.com/prometheus/prometheus.git
synced 2026-05-28 04:02:21 -04:00
Drop default initialized value
Signed-off-by: Kyle Eckhart <kgeckhart@users.noreply.github.com>
This commit is contained in:
parent
920ee7f99d
commit
8f68b4d409
1 changed files with 1 additions and 1 deletions
|
|
@ -552,7 +552,7 @@ func (db *DB) loadWAL(r *wlog.Reader, duplicateRefToValidRef map[chunks.HeadSeri
|
|||
lastRef = entry.Ref
|
||||
}
|
||||
|
||||
series := &memSeries{ref: entry.Ref, lset: entry.Labels, lastTs: 0}
|
||||
series := &memSeries{ref: entry.Ref, lset: entry.Labels}
|
||||
series, created := db.series.GetOrSet(series.lset.Hash(), series)
|
||||
|
||||
if !created {
|
||||
|
|
|
|||
Loading…
Reference in a new issue