Skip to content
Merged
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion crates/turborepo-lib/src/daemon/connector.rs
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,7 @@ impl DaemonConnector {
return {
debug!("connected in {}µs", time.elapsed().as_micros());
Ok(client.with_connect_settings(self))
}
};
}
Err(DaemonError::VersionMismatch(_)) if self.can_kill_server => {
self.kill_live_server(client, pid).await?
Expand Down Expand Up @@ -524,6 +524,7 @@ mod test {
.stderr(Stdio::null())
.arg("-e")
.arg("setInterval(() => {}, 1000)")
.kill_on_drop(true)
.spawn()
.unwrap();

Expand Down
Loading