diff --git a/src/tests/simulation/tests/integration_tests/recovery/background_ddl.rs b/src/tests/simulation/tests/integration_tests/recovery/background_ddl.rs index 8585867bd75ae..f47f05c4f0c8e 100644 --- a/src/tests/simulation/tests/integration_tests/recovery/background_ddl.rs +++ b/src/tests/simulation/tests/integration_tests/recovery/background_ddl.rs @@ -215,6 +215,7 @@ async fn test_ddl_cancel() -> Result<()> { let pid = line.split_whitespace().next().unwrap(); let pid = pid.parse::().unwrap(); session.run(format!("kill {};", pid)).await?; + sleep(Duration::from_secs(10)).await; break; } sleep(Duration::from_secs(2)).await;