diff --git a/zellij-server/src/os_input_output.rs b/zellij-server/src/os_input_output.rs index f0b49c68b0..7905a6e3e1 100644 --- a/zellij-server/src/os_input_output.rs +++ b/zellij-server/src/os_input_output.rs @@ -300,7 +300,7 @@ impl ServerOsApi for ServerOsInputOutput { Box::new((*self).clone()) } fn kill(&self, pid: Pid) -> Result<(), nix::Error> { - let _ = kill(pid, Some(Signal::SIGTERM)); + let _ = kill(pid, Some(Signal::SIGHUP)); Ok(()) } fn force_kill(&self, pid: Pid) -> Result<(), nix::Error> {