We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bd57e08 commit 1d2539dCopy full SHA for 1d2539d
fuzz/fuzz_targets/fuzz_database.rs
@@ -584,7 +584,12 @@ fuzz_target!(|ops: Vec<Op>| {
584
db_options.checkpoint_interval = std::time::Duration::MAX;
585
db_options.use_wal = test_recovery;
586
db_options.default_commit_sync = false;
587
- db_options.checkpoint_target_size = 16 * 4096 as usize;
+ 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
+ };
593
let db = canopydb::Database::with_options(options.clone(), db_options.clone()).unwrap();
594
let mut world = World {
595
state: WorldState {
0 commit comments