ethdb/pebble: use sync mode for pebble writes (#27615)

This commit is contained in:
rjl493456442 2023-06-27 15:19:02 +08:00 committed by devopsbo3
parent 42c754046b
commit e1e0b1c2e3

View file

@ -279,7 +279,7 @@ func (d *Database) Put(key []byte, value []byte) error {
if d.closed { if d.closed {
return pebble.ErrClosed return pebble.ErrClosed
} }
return d.db.Set(key, value, pebble.NoSync) return d.db.Set(key, value, pebble.Sync)
} }
// Delete removes the key from the key-value store. // Delete removes the key from the key-value store.