Skip to content

Commit

Permalink
Remove unused parameter name.
Browse files Browse the repository at this point in the history
Signed-off-by: Peter Štibraný <pstibrany@gmail.com>
  • Loading branch information
pstibrany committed Feb 5, 2024
1 parent db1ac1d commit 526d274
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/compactor/blocks_cleaner.go
Original file line number Diff line number Diff line change
Expand Up @@ -734,6 +734,6 @@ func newNoopGaugeVec() *noopGaugeVec {
return &noopGaugeVec{g: prometheus.NewGauge(prometheus.GaugeOpts{})}
}

func (n *noopGaugeVec) WithLabelValues(lvs ...string) prometheus.Gauge {
func (n *noopGaugeVec) WithLabelValues(...string) prometheus.Gauge {
return n.g
}

0 comments on commit 526d274

Please sign in to comment.