fix(provider::ws): ignore the websocket response when the request has been cancelled. (#641)
This commit is contained in:
parent
9fc75ef245
commit
8d07610e4a
|
@ -313,7 +313,9 @@ where
|
||||||
Err(_) => {}
|
Err(_) => {}
|
||||||
Ok(Incoming::Response(resp)) => {
|
Ok(Incoming::Response(resp)) => {
|
||||||
if let Some(request) = self.pending.remove(&resp.id) {
|
if let Some(request) = self.pending.remove(&resp.id) {
|
||||||
request.send(resp.data.into_result()).map_err(to_client_error)?;
|
if !request.is_canceled() {
|
||||||
|
request.send(resp.data.into_result()).map_err(to_client_error)?;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
Ok(Incoming::Notification(notification)) => {
|
Ok(Incoming::Notification(notification)) => {
|
||||||
|
|
Loading…
Reference in New Issue