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