diff options
Diffstat (limited to 'src/output_protocol')
| -rw-r--r-- | src/output_protocol/ipc.rs | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/src/output_protocol/ipc.rs b/src/output_protocol/ipc.rs index fb6df80..ee27e42 100644 --- a/src/output_protocol/ipc.rs +++ b/src/output_protocol/ipc.rs @@ -60,8 +60,6 @@ impl OutputProtocol for IPCOutputProtocol { debug_log!("[IPC] Connected to {}", self.socket_path.display()); let bytes = format!("{}\n", message); let _ = stream.writable().await; - // We can't use the stream directly here since we need to store it - // for future sends. Let's store and send. let _ = stream.try_write(bytes.as_bytes()); *guard = Some(stream); } |
