Keep idle streams from closing connections
Some checks failed
CI / checks (push) Failing after 7m16s

This commit is contained in:
Alois 2026-07-29 01:01:53 +02:00
commit c3fe269dc6
Signed by: alois
SSH key fingerprint: SHA256:GBzT2DXvAuGV9XIV5W3WrzVpjU54FThmxHXdbz95J24
2 changed files with 1 additions and 8 deletions

View file

@ -973,8 +973,7 @@ impl Receiver {
return Err(CommunicationError::StreamError);
}
Err(_) => {
warn!("[Receiver] length-prefix read timed out");
return Err(CommunicationError::StreamError);
return Ok(ReceivedFrame::Idle);
}
}