Skip to content
This repository was archived by the owner on May 20, 2025. It is now read-only.

Commit d4a4919

Browse files
committed
Disable RocksDB WAL for pruning
1 parent 50cd0dc commit d4a4919

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

bee-ledger/src/workers/pruning/prune.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -203,7 +203,7 @@ async fn prune_milestone<S: StorageBackend>(
203203
// Execute the batch operation.
204204
let batch_commit = Instant::now();
205205
storage
206-
.batch_commit(batch, true)
206+
.batch_commit(batch, false)
207207
.map_err(|e| PruningError::Storage(Box::new(e)))?;
208208
timings.batch_commit = batch_commit.elapsed();
209209

0 commit comments

Comments
 (0)