From 86574f05a73288d6b381eba798527fa12d07f1f5 Mon Sep 17 00:00:00 2001 From: Steven Fackler Date: Fri, 11 Oct 2019 15:51:21 -0400 Subject: [PATCH] fix(server): Remove a stray 'static bound --- src/server/conn.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/server/conn.rs b/src/server/conn.rs index 726a95ac14..3940bfbb3d 100644 --- a/src/server/conn.rs +++ b/src/server/conn.rs @@ -663,7 +663,7 @@ where impl Future for Connection where - S: Service + 'static, + S: Service, S::Error: Into>, I: AsyncRead + AsyncWrite + Unpin + 'static, B: Payload + 'static,