We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1456be2 commit a0d2b63Copy full SHA for a0d2b63
crates/bot/src/worker.rs
@@ -122,6 +122,7 @@ impl Process {
122
async fn spawn() -> anyhow::Result<Self> {
123
const VAR_NAME: &str = "TYPST_BOT_WORKER_PATH";
124
let worker_path = std::env::var_os(VAR_NAME).unwrap_or_else(|| "./worker".into());
125
+ #[allow(clippy::unnecessary_debug_formatting)]
126
let child = std::process::Command::new(&worker_path)
127
.stdin(Stdio::piped())
128
.stdout(Stdio::piped())
0 commit comments