Skip to content

Commit 1d2539d

Browse files
committed
disable background checkpoints when fuzzing multi-writer txs to avoid deadlocks
1 parent bd57e08 commit 1d2539d

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

fuzz/fuzz_targets/fuzz_database.rs

+6-1
Original file line numberDiff line numberDiff line change
@@ -584,7 +584,12 @@ fuzz_target!(|ops: Vec<Op>| {
584584
db_options.checkpoint_interval = std::time::Duration::MAX;
585585
db_options.use_wal = test_recovery;
586586
db_options.default_commit_sync = false;
587-
db_options.checkpoint_target_size = 16 * 4096 as usize;
587+
db_options.checkpoint_target_size = if MAX_WRITERS == 1 {
588+
16 * 4096
589+
} else {
590+
// effectively disable background checkpoints to avoid deadlocks
591+
usize::MAX
592+
};
588593
let db = canopydb::Database::with_options(options.clone(), db_options.clone()).unwrap();
589594
let mut world = World {
590595
state: WorldState {

0 commit comments

Comments
 (0)