mirror of
https://github.com/prometheus/prometheus
synced 2024-12-29 18:22:16 +00:00
Merge pull request #159 from dim/fix/wal-flush
Use configurable WAL flush interval
This commit is contained in:
commit
3b7e71fee9
2
db.go
2
db.go
@ -204,7 +204,7 @@ func Open(dir string, l log.Logger, r prometheus.Registerer, opts *Options) (db
|
||||
return nil, errors.Wrap(err, "create leveled compactor")
|
||||
}
|
||||
|
||||
wal, err := OpenSegmentWAL(filepath.Join(dir, "wal"), l, 10*time.Second)
|
||||
wal, err := OpenSegmentWAL(filepath.Join(dir, "wal"), l, opts.WALFlushInterval)
|
||||
if err != nil {
|
||||
return nil, err
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user