mirror of
https://github.com/prometheus/prometheus.git
synced 2024-12-24 21:24:05 -08:00
Correctly format error message (#10669)
Signed-off-by: Łukasz Mierzwa <l.mierzwa@gmail.com>
This commit is contained in:
parent
41630b8e88
commit
88f9b248b4
|
@ -656,7 +656,7 @@ func (cdm *ChunkDiskMapper) Chunk(ref ChunkDiskMapperRef) (chunkenc.Chunk, error
|
||||||
return nil, &CorruptionErr{
|
return nil, &CorruptionErr{
|
||||||
Dir: cdm.dir.Name(),
|
Dir: cdm.dir.Name(),
|
||||||
FileIndex: sgmIndex,
|
FileIndex: sgmIndex,
|
||||||
Err: errors.New("head chunk file index %d does not exist on disk"),
|
Err: errors.Errorf("head chunk file index %d does not exist on disk", sgmIndex),
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue