mirror of
https://github.com/prometheus/prometheus.git
synced 2024-11-09 23:24:05 -08:00
Fix regressions introduced by #13242
Signed-off-by: Marco Pracucci <marco@pracucci.com>
This commit is contained in:
parent
72a8f1084b
commit
7852a7c516
|
@ -188,12 +188,12 @@ func NewLeveledCompactorWithOptions(ctx context.Context, r prometheus.Registerer
|
|||
if mergeFunc == nil {
|
||||
mergeFunc = storage.NewCompactingChunkSeriesMerger(storage.ChainedSeriesMerge)
|
||||
}
|
||||
var maxBlockChunkSegmentSize int64
|
||||
if opts.MaxBlockChunkSegmentSize == 0 {
|
||||
maxBlockChunkSegmentSize := opts.MaxBlockChunkSegmentSize
|
||||
if maxBlockChunkSegmentSize == 0 {
|
||||
maxBlockChunkSegmentSize = chunks.DefaultChunkSegmentSize
|
||||
}
|
||||
var pe index.PostingsEncoder
|
||||
if opts.PE == nil {
|
||||
pe := opts.PE
|
||||
if pe == nil {
|
||||
pe = index.EncodePostingsRaw
|
||||
}
|
||||
return &LeveledCompactor{
|
||||
|
|
Loading…
Reference in a new issue