From a5d21c8b41812d2f036aef926b4ef55697afae68 Mon Sep 17 00:00:00 2001 From: katelyn martin <kate@buoyant.io> Date: Tue, 7 Jan 2025 00:00:00 +0000 Subject: [PATCH] chore(http/insert): upgrade to hyper 1.x Signed-off-by: katelyn martin <kate@buoyant.io> --- linkerd/http/insert/src/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/linkerd/http/insert/src/lib.rs b/linkerd/http/insert/src/lib.rs index 21710ae0da..173fb78eb0 100644 --- a/linkerd/http/insert/src/lib.rs +++ b/linkerd/http/insert/src/lib.rs @@ -279,7 +279,7 @@ impl<F, L, V, B> Future for ResponseInsertFuture<F, L, V, B> where F: TryFuture<Ok = http::Response<B>>, L: Lazy<V>, - V: Send + Sync + 'static, + V: Clone + Send + Sync + 'static, { type Output = Result<F::Ok, F::Error>;