Fix log message for SIGTERM when child has exited (#12400)

This commit is contained in:
Zanie Blue
2025-03-23 08:35:11 -05:00
committed by GitHub
parent fb1b3232e8
commit 2b1d50a5ab
+1 -1
View File
@@ -111,7 +111,7 @@ pub(crate) async fn run_to_completion(mut handle: Child) -> anyhow::Result<ExitS
_ = sigterm_handle.recv() => {
// If the child has already exited, we can't send it signals
let Some(child_pid) = *ChildPid::from(&handle) else {
debug!("Received SIGINT, but the child has already exited");
debug!("Received SIGTERM, but the child has already exited");
continue;
};