From 9dc37a87f7b66b5c52853336858fb6a954ac98e8 Mon Sep 17 00:00:00 2001 From: Tyler Neely Date: Fri, 15 Jul 2022 16:46:54 +0000 Subject: [PATCH] Enable more aggressive message scrambling to get a race condition to jump out about 0.2% of the time --- tests/simulation/raft.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/simulation/raft.cpp b/tests/simulation/raft.cpp index f3dbd63ba..cbb4658f0 100644 --- a/tests/simulation/raft.cpp +++ b/tests/simulation/raft.cpp @@ -567,7 +567,7 @@ void RunSimulation() { auto config = SimulatorConfig{ .drop_percent = 0, .perform_timeouts = true, - .scramble_messages = false, + .scramble_messages = true, .rng_seed = 0, };