Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 9 additions & 1 deletion core-client/transports/src/transports/duplex.rs
Original file line number Diff line number Diff line change
Expand Up @@ -158,6 +158,7 @@ where
// Handle stream.
// Reads from stream and queues to incoming queue.
log::debug!("handle stream");
let mut stream_eof = false;
loop {
let response_str = match self.stream.as_mut().poll_next(cx) {
Poll::Ready(Some(response_str)) => response_str,
Expand All @@ -166,7 +167,9 @@ where
// can be shutdown. Reopening closed connections must
// be handled by the transport.
debug!("connection closed");
return Poll::Ready(Ok(()));
// We still have to process the incoming queue.
stream_eof = true;
break;
}
Poll::Pending => break,
};
Expand Down Expand Up @@ -269,6 +272,11 @@ where
}
}

// Input stream handling is done, the future is ready.
if stream_eof {
return Poll::Ready(Ok(()));
}

// Handle outgoing queue.
// Writes queued messages to sink.
log::debug!("handle outgoing");
Expand Down