s.b.Close will commit pending ops, so there is no need to FroceCommit it in kvstore.Close()
@@ -233,7 +233,6 @@ func (s *store) Restore() error {
func (s *store) Close() error {
close(s.stopc)
s.wg.Wait()
- s.b.ForceCommit()
return s.b.Close()
}