Skip to content

Commit 269b608

Browse files
committed
fix corrupted transfers issue
1 parent a5bc8ec commit 269b608

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

lidi-receive/src/dispatch.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,6 @@ pub fn start<ClientNew, ClientEnd>(
9494
match protocol::EndpointId::deserialize(payload) {
9595
None => {
9696
log::error!("client {client_id:x} for invalid endpoint");
97-
continue;
9897
}
9998
Some(endpoint) => {
10099
let (client_sendq, client_recvq) = if 0 < receiver.config.queue_size {
@@ -110,6 +109,7 @@ pub fn start<ClientNew, ClientEnd>(
110109
.send((endpoint, client_id, client_recvq))?;
111110
}
112111
}
112+
continue;
113113
}
114114
protocol::BlockType::Abort | protocol::BlockType::End => will_end = true,
115115
protocol::BlockType::Data => (),

0 commit comments

Comments
 (0)