We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6c4213c commit 1d53a8cCopy full SHA for 1d53a8c
crates/turborepo-process/src/child.rs
@@ -328,7 +328,7 @@ impl ShutdownStyle {
328
329
let result = tokio::time::timeout(*timeout, fut).await;
330
match result {
331
- // We ignore the exit code and mark it as killed since we sent a SIGINT
+ // We ignore the exit code and mark it as interrupted since we sent a SIGINT
332
// This avoids reliance on an underlying process exiting with
333
// no exit code or a non-zero in order for turbo to operate correctly.
334
Ok(Ok(_exit_code)) => ChildExit::Interrupted,
0 commit comments