Skip to content

Commit 68fd047

Browse files
committed
fix corrupted transfers issue
1 parent 26e0ba2 commit 68fd047

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
@@ -95,7 +95,6 @@ pub fn start<ClientNew, ClientEnd>(
9595
match protocol::EndpointId::deserialize(payload) {
9696
None => {
9797
log::error!("client {client_id:x} for invalid endpoint");
98-
continue;
9998
}
10099
Some(endpoint) => {
101100
let (client_sendq, client_recvq) = if 0 < receiver.config.queue_size {
@@ -111,6 +110,7 @@ pub fn start<ClientNew, ClientEnd>(
111110
.send((endpoint, client_id, client_recvq))?;
112111
}
113112
}
113+
continue;
114114
}
115115
protocol::BlockType::Abort | protocol::BlockType::End => will_end = true,
116116
protocol::BlockType::Data => (),

0 commit comments

Comments
 (0)