Skip to content

Commit

Permalink
Update socket_state.rs
Browse files Browse the repository at this point in the history
  • Loading branch information
zaneschepke committed Sep 16, 2024
1 parent 1fc70ff commit 526671b
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion common/client-libs/gateway-client/src/socket_state.rs
Original file line number Diff line number Diff line change
Expand Up @@ -308,7 +308,9 @@ impl PartiallyDelegatedHandle {
) -> Result<(), GatewayClientError> {
let stream_messages: Vec<_> = messages.into_iter().map(Ok).collect();
let mut send_stream = futures::stream::iter(stream_messages);
Ok(self.sink_half.send_all(&mut send_stream).await?)
let r = Ok(self.sink_half.send_all(&mut send_stream).await?);
log::info!("JON: PartiallyDelegated::batch_send_without_response - sent messages");
r
}

pub(crate) async fn merge(self) -> Result<WsConn, GatewayClientError> {
Expand Down

0 comments on commit 526671b

Please sign in to comment.