Skip to content

Commit

Permalink
fixup! Add IPC transport implementation for Unix
Browse files Browse the repository at this point in the history
  • Loading branch information
FelipeRosa committed Dec 15, 2020
1 parent 7f34638 commit 6a28cad
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/transports/ipc.rs
Original file line number Diff line number Diff line change
Expand Up @@ -140,7 +140,7 @@ async fn run_server(unix_stream: UnixStream, messages_rx: mpsc::UnboundedReceive
let _ = respond(&mut pending_response_txs, output);
}
}
Err(err) => log::warn!("Got bad IPC response bytes: {:?}", err),
Err(_) => {},
};
},
Some(Err(err)) => {
Expand Down

0 comments on commit 6a28cad

Please sign in to comment.