mirror of
https://github.com/actix/actix-extras.git
synced 2024-11-24 07:53:00 +01:00
map connector timeout error
This commit is contained in:
parent
b950d6997d
commit
c26d9545a5
@ -92,7 +92,10 @@ pub enum ClientConnectorError {
|
||||
|
||||
impl From<ConnectorError> for ClientConnectorError {
|
||||
fn from(err: ConnectorError) -> ClientConnectorError {
|
||||
ClientConnectorError::Connector(err)
|
||||
match err {
|
||||
ConnectorError::Timeout => ClientConnectorError::Timeout,
|
||||
_ => ClientConnectorError::Connector(err)
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user