clippy fix warning

This commit is contained in:
Martin Algesten
2019-10-20 11:49:20 +02:00
parent acb40cc1a3
commit d8f8220c3c

View File

@@ -131,14 +131,14 @@ pub(crate) fn connect(
let send_result = send_prelude(&unit, &mut stream, redir); let send_result = send_prelude(&unit, &mut stream, redir);
if send_result.is_err() { if let Err(err) = send_result {
if is_recycled { if is_recycled {
// we try open a new connection, this time there will be // we try open a new connection, this time there will be
// no connection in the pool. don't use it. // no connection in the pool. don't use it.
return connect(req, unit, false, redirect_count, body, redir); return connect(req, unit, false, redirect_count, body, redir);
} else { } else {
// not a pooled connection, propagate the error. // not a pooled connection, propagate the error.
return Err(send_result.unwrap_err().into()); return Err(err.into());
} }
} }