Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions examples/sync/src/bin/client.rs
Original file line number Diff line number Diff line change
Expand Up @@ -150,6 +150,8 @@ where
apply_batch_size: 1024,
max_outstanding_requests: config.max_outstanding_requests,
update_rx: Some(update_receiver),
finish_rx: None,
reached_target_tx: None,
max_retained_roots: 8,
};

Expand Down Expand Up @@ -214,6 +216,8 @@ where
apply_batch_size: 1024,
max_outstanding_requests: config.max_outstanding_requests,
update_rx: Some(update_receiver),
finish_rx: None,
reached_target_tx: None,
max_retained_roots: 8,
};

Expand Down Expand Up @@ -275,6 +279,8 @@ where
apply_batch_size: 1024,
max_outstanding_requests: config.max_outstanding_requests,
update_rx: Some(update_receiver),
finish_rx: None,
reached_target_tx: None,
max_retained_roots: 8,
};

Expand Down
2 changes: 2 additions & 0 deletions storage/fuzz/fuzz_targets/qmdb_any_fixed_sync.rs
Original file line number Diff line number Diff line change
Expand Up @@ -130,6 +130,8 @@ async fn test_sync<
let sync_config: sync::engine::Config<FixedDb, R> = sync::engine::Config {
context: context.with_label("sync").with_attribute("id", sync_id),
update_rx: None,
finish_rx: None,
reached_target_tx: None,
db_config,
fetch_batch_size: NZU64!((fetch_batch_size % 100) + 1),
target,
Expand Down
Loading
Loading