From 6eb46735d37515994d0f0dcb6055234669bb4f15 Mon Sep 17 00:00:00 2001 From: Maksym Vorobiov Date: Tue, 3 Mar 2020 19:17:41 +0200 Subject: [PATCH] fix spaces --- actix-http/src/client/pool.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/actix-http/src/client/pool.rs b/actix-http/src/client/pool.rs index 7bc862576..f86ef582e 100644 --- a/actix-http/src/client/pool.rs +++ b/actix-http/src/client/pool.rs @@ -594,7 +594,7 @@ where Some(Acquired(this.key.clone(), this.inner.take())), ))); Poll::Ready(()) - } else { + } else { *this.h2 = Some(handshake(io).boxed_local()); self.poll(cx) }