parent
359015b2be
commit
d60226a3cf
|
@ -378,11 +378,15 @@ impl State {
|
||||||
.instrument(span.clone())
|
.instrument(span.clone())
|
||||||
.await
|
.await
|
||||||
{
|
{
|
||||||
Either::Left((None, _)) => Transition::ExitResponse {
|
Either::Left((None, _)) => {
|
||||||
e: PeerError::ConnectionClosed.into(),
|
Transition::ExitResponse {
|
||||||
tx,
|
e: PeerError::ConnectionClosed.into(),
|
||||||
},
|
tx,
|
||||||
Either::Left((Some(Err(e)), _)) => Transition::ExitResponse { e: e.into(), tx },
|
}
|
||||||
|
}
|
||||||
|
Either::Left((Some(Err(e)), _)) => {
|
||||||
|
Transition::ExitResponse { e: e.into(), tx }
|
||||||
|
}
|
||||||
Either::Left((Some(Ok(peer_msg)), _cancel)) => {
|
Either::Left((Some(Ok(peer_msg)), _cancel)) => {
|
||||||
let request_msg = span.in_scope(|| handler.process_message(peer_msg));
|
let request_msg = span.in_scope(|| handler.process_message(peer_msg));
|
||||||
// If the message was not consumed, check whether it
|
// If the message was not consumed, check whether it
|
||||||
|
|
Loading…
Reference in New Issue