Rename bound vars in match arms for PeerServer state machine
Co-Authored-By: Henry de Valence <hdevalence@hdevalence.ca>
This commit is contained in:
parent
fc872ea03f
commit
199038e6b8
|
@ -127,14 +127,14 @@ where
|
||||||
}
|
}
|
||||||
// XXX switch back to hard failure when we parse all message types
|
// XXX switch back to hard failure when we parse all message types
|
||||||
//Either::Left((Some(Err(e)), _)) => self.fail_with(e.into()),
|
//Either::Left((Some(Err(e)), _)) => self.fail_with(e.into()),
|
||||||
Either::Left((Some(Err(e)), _)) => error!(%e),
|
Either::Left((Some(Err(peer_err)), _timer)) => error!(%peer_err),
|
||||||
Either::Left((Some(Ok(msg)), _)) => {
|
Either::Left((Some(Ok(peer_msg)), _timer)) => {
|
||||||
match self.handle_message_as_response(msg) {
|
match self.handle_message_as_response(peer_msg) {
|
||||||
None => continue,
|
None => continue,
|
||||||
Some(msg) => self.handle_message_as_request(msg).await,
|
Some(msg) => self.handle_message_as_request(msg).await,
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
Either::Right(((), _)) => {
|
Either::Right(((), _peer_fut)) => {
|
||||||
trace!("client request timed out");
|
trace!("client request timed out");
|
||||||
// Re-matching lets us take ownership of tx
|
// Re-matching lets us take ownership of tx
|
||||||
self.state = match self.state {
|
self.state = match self.state {
|
||||||
|
|
Loading…
Reference in New Issue