hotfix: fix build (#3102)

This commit is contained in:
Michael Neale
2025-06-27 15:29:21 +10:00
committed by GitHub
parent 666ce691d3
commit 7f71220411
14 changed files with 45 additions and 16 deletions
+1 -4
View File
@@ -134,10 +134,7 @@ impl StdioActor {
while let Some(message_str) = receiver.recv().await {
tracing::debug!(message = ?message_str, "Sending outgoing message");
if let Err(e) = stdin
.write_all(format!("{}\n", message_str).as_bytes())
.await
{
if let Err(e) = stdin.write_all(format!("{message_str}\n").as_bytes()).await {
tracing::error!(error = ?e, "Error writing message to child process");
break;
}