We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6da70d1 commit 9db785bCopy full SHA for 9db785b
crates/uv/src/commands/tool/run.rs
@@ -236,8 +236,6 @@ pub(crate) async fn run(
236
// Ignore signals in the parent process, deferring them to the child. This is safe as long as
237
// the command is the last thing that runs in this process; otherwise, we'd need to restore the
238
// signal handlers after the command completes.
239
- let _handler = tokio::spawn(async { while tokio::signal::ctrl_c().await.is_ok() {} });
240
-
241
let mut term_signal = signal(SignalKind::terminate())?;
242
let mut int_signal = signal(SignalKind::interrupt())?;
243
0 commit comments