Merge pull request #159 from dim/fix/wal-flush

Use configurable WAL flush interval
This commit is contained in:
Goutham Veeramachaneni 2017-10-03 16:17:55 +05:30 committed by GitHub
commit 3b7e71fee9
1 changed files with 1 additions and 1 deletions

2
db.go
View File

@ -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
}