From 48c09c2e4a237a32b40e69c4d2090f855f7089d5 Mon Sep 17 00:00:00 2001 From: Eval EXEC Date: Wed, 28 Aug 2024 13:08:45 +0800 Subject: [PATCH] Integration Test: kill_gracefully on RandomlyKill --- test/src/specs/fault_injection/randomly_kill.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/src/specs/fault_injection/randomly_kill.rs b/test/src/specs/fault_injection/randomly_kill.rs index 358c81bd9d..92c6101805 100644 --- a/test/src/specs/fault_injection/randomly_kill.rs +++ b/test/src/specs/fault_injection/randomly_kill.rs @@ -24,7 +24,7 @@ impl Spec for RandomlyKill { node.mine(n); } info!("Stop the node"); - node.stop(); + node.stop_gracefully(); info!("Start the node"); node.start(); }