From f2b1accec07fe8262368f26134d0edf253ededfb Mon Sep 17 00:00:00 2001 From: ppom Date: Thu, 26 Feb 2026 12:00:00 +0100 Subject: [PATCH] Fix slice-inherit option --- src/concepts/plugin.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/concepts/plugin.rs b/src/concepts/plugin.rs index 3f3936c..5e22287 100644 --- a/src/concepts/plugin.rs +++ b/src/concepts/plugin.rs @@ -173,7 +173,7 @@ impl Plugin { // --pipe gives direct, non-emulated stdio access, for better performance. command.arg("--pipe"); // run the command inside the same slice as reaction - command.arg("--slice-intherit"); + command.arg("--slice-inherit"); // Make path absolute for systemd let full_workdir = path::absolute(&plugin_working_directory)?;