remove the param that is not used

Signed-off-by: kcx2366425574 <kuangcx@inspur.com>
This commit is contained in:
kcx2366425574 2021-05-13 17:26:44 +08:00
parent e313ffa8ab
commit be9c870b06
1 changed files with 2 additions and 2 deletions

View File

@ -64,7 +64,7 @@ type walMetrics struct {
corruptions prometheus.Counter
}
func newWalMetrics(wal *SegmentWAL, r prometheus.Registerer) *walMetrics {
func newWalMetrics(r prometheus.Registerer) *walMetrics {
m := &walMetrics{}
m.fsyncDuration = prometheus.NewSummary(prometheus.SummaryOpts{
@ -192,7 +192,7 @@ func OpenSegmentWAL(dir string, logger log.Logger, flushInterval time.Duration,
segmentSize: walSegmentSizeBytes,
crc32: newCRC32(),
}
w.metrics = newWalMetrics(w, r)
w.metrics = newWalMetrics(r)
fns, err := sequenceFiles(w.dirFile.Name())
if err != nil {