Skip to content

Commit

Permalink
[fix] adding two nodes with unpruned history to simtest as an attempt…
Browse files Browse the repository at this point in the history
… to mitigate sporadic failures due to nodes unable to sync missing checkpoint history when restart.
  • Loading branch information
akichidis committed Nov 26, 2024
1 parent 01275fb commit f6996d2
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion crates/sui-benchmark/tests/simtest.rs
Original file line number Diff line number Diff line change
Expand Up @@ -554,7 +554,12 @@ mod test {
config
});

let test_cluster = build_test_cluster(4, 5000).await;
let test_cluster = Arc::new(
init_test_cluster_builder(4, 5000)
.with_num_unpruned_validators(2)
.build()
.await,
);
let mut simulated_load_config = SimulatedLoadConfig::default();
{
let mut rng = thread_rng();
Expand Down

0 comments on commit f6996d2

Please sign in to comment.