From 2b1d50a5abbdf50c294c3cd3bf12155493eab481 Mon Sep 17 00:00:00 2001 From: Zanie Blue Date: Sun, 23 Mar 2025 08:35:11 -0500 Subject: [PATCH] Fix log message for `SIGTERM` when child has exited (#12400) --- crates/uv/src/commands/run.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/uv/src/commands/run.rs b/crates/uv/src/commands/run.rs index 8aaa31b56..c2e9133dd 100644 --- a/crates/uv/src/commands/run.rs +++ b/crates/uv/src/commands/run.rs @@ -111,7 +111,7 @@ pub(crate) async fn run_to_completion(mut handle: Child) -> anyhow::Result { // 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; };