don't return useless error
This commit is contained in:
parent
7cdbee487c
commit
cc35e1f5be
1 changed files with 1 additions and 5 deletions
|
@ -204,11 +204,7 @@ impl Client {
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
|
||||||
sender.send(perform(future.await).await).await.map_err(|_| {
|
let _ = sender.send(perform(future.await).await).await;
|
||||||
Error::OtherError(
|
|
||||||
"failed to send back response from tokio request (future probably cancelled)",
|
|
||||||
)
|
|
||||||
})
|
|
||||||
});
|
});
|
||||||
|
|
||||||
receiver
|
receiver
|
||||||
|
|
Loading…
Reference in a new issue