From 5a5b7dc3158b3f2a2a3c485a6750e2f5ef1c3008 Mon Sep 17 00:00:00 2001 From: prplV Date: Thu, 29 May 2025 17:41:42 +0300 Subject: [PATCH] prcs bug with leaking process fixed) --- noxis-rs/src/utils/prcs.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/noxis-rs/src/utils/prcs.rs b/noxis-rs/src/utils/prcs.rs index 01e292e..dfb6c7e 100644 --- a/noxis-rs/src/utils/prcs.rs +++ b/noxis-rs/src/utils/prcs.rs @@ -520,6 +520,7 @@ mod process_unittests { let res1 = start_process("freeze-check", "./tests/examples/freeze-check").await; assert!(res1.is_ok()); assert!(!is_frozen("freeze-check").await); + let _ = terminate_process("freeze-check").await; } #[tokio::test] async fn pidof_active_process() {