src/client/http_client.rs: avoid compiler warning

This commit is contained in:
Dietmar Maurer 2019-03-15 07:16:26 +01:00
parent 9e26abf16b
commit b005ed12d5

View File

@ -196,7 +196,7 @@ impl HttpClient {
.map_err(Error::from)
.and_then(move |resp| {
let status = resp.status();
let _status = resp.status(); // fixme: ??
resp.into_body()
.map_err(Error::from)