mirror of
https://github.com/prometheus/prometheus.git
synced 2026-02-03 20:39:32 -05:00
fix: typo in error message (#17878)
Signed-off-by: Yohei Yamamoto <yhymmt123@gmail.com>
This commit is contained in:
parent
3c532e14de
commit
0e77dcfdb9
1 changed files with 1 additions and 1 deletions
|
|
@ -985,7 +985,7 @@ func (h *Head) loadMmappedChunks(refSeries map[chunks.HeadSeriesRef]*memSeries)
|
|||
return nil
|
||||
}); err != nil {
|
||||
// secondLastRef because the lastRef caused an error.
|
||||
return nil, nil, secondLastRef, fmt.Errorf("iterate on on-disk chunks: %w", err)
|
||||
return nil, nil, secondLastRef, fmt.Errorf("iterate on-disk chunks: %w", err)
|
||||
}
|
||||
return mmappedChunks, oooMmappedChunks, lastRef, nil
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue