Skip to content

Commit

Permalink
debug
Browse files Browse the repository at this point in the history
  • Loading branch information
borngraced committed Nov 12, 2024
1 parent 95da428 commit 9b78f48
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions relay_client/src/websocket/stream.rs
Original file line number Diff line number Diff line change
Expand Up @@ -236,8 +236,10 @@ impl ClientStream {
if let Poll::Ready(Some(next_message)) = self.outbound_rx.poll_recv(cx) {
println!("start send");
if let Err(err) = self.socket.start_send_unpin(next_message) {
println!("start send error {err:?}");
return Poll::Ready(Err(err));
}
println!("after start send");

should_flush = true;
} else if should_flush {
Expand Down

0 comments on commit 9b78f48

Please sign in to comment.