We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 26e0ba2 commit 68fd047Copy full SHA for 68fd047
1 file changed
lidi-receive/src/dispatch.rs
@@ -95,7 +95,6 @@ pub fn start<ClientNew, ClientEnd>(
95
match protocol::EndpointId::deserialize(payload) {
96
None => {
97
log::error!("client {client_id:x} for invalid endpoint");
98
- continue;
99
}
100
Some(endpoint) => {
101
let (client_sendq, client_recvq) = if 0 < receiver.config.queue_size {
@@ -111,6 +110,7 @@ pub fn start<ClientNew, ClientEnd>(
111
110
.send((endpoint, client_id, client_recvq))?;
112
113
+ continue;
114
115
protocol::BlockType::Abort | protocol::BlockType::End => will_end = true,
116
protocol::BlockType::Data => (),
0 commit comments