summaryrefslogtreecommitdiffstats
path: root/net/src/wkd.rs
diff options
context:
space:
mode:
Diffstat (limited to 'net/src/wkd.rs')
-rw-r--r--net/src/wkd.rs6
1 files changed, 3 insertions, 3 deletions
diff --git a/net/src/wkd.rs b/net/src/wkd.rs
index e563a168..5b2a1deb 100644
--- a/net/src/wkd.rs
+++ b/net/src/wkd.rs
@@ -234,11 +234,11 @@ fn parse_body<S: AsRef<str>>(body: &[u8], email_address: S)
}
}
-fn get_following_redirects<'a, T>(
- client: &'a hyper::client::Client<T>,
+fn get_following_redirects<T>(
+ client: &hyper::client::Client<T>,
url: Uri,
depth: i32,
-) -> BoxFuture<'a, Result<Response<Body>>>
+) -> BoxFuture<Result<Response<Body>>>
where
T: hyper::client::connect::Connect + Clone + Send + Sync + 'static,
{