From e4dfd6a1e75caa03d54dbf42ec2ede780f16843f Mon Sep 17 00:00:00 2001 From: Dmitry Pypin Date: Thu, 5 Sep 2019 16:06:42 -0700 Subject: [PATCH] Small changes --- actix-http/CHANGES.md | 1 + actix-http/src/client/connection.rs | 3 ++- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/actix-http/CHANGES.md b/actix-http/CHANGES.md index 2918e4c54..80da691cd 100644 --- a/actix-http/CHANGES.md +++ b/actix-http/CHANGES.md @@ -13,6 +13,7 @@ * on_connect result isn't added to request extensions for http2 requests #1009 + ## [0.2.9] - 2019-08-13 ### Changed diff --git a/actix-http/src/client/connection.rs b/actix-http/src/client/connection.rs index 21fc525b0..e511b04ff 100644 --- a/actix-http/src/client/connection.rs +++ b/actix-http/src/client/connection.rs @@ -52,7 +52,8 @@ pub trait Connection { fn open_tunnel(self, head: RequestHead) -> Self::TunnelFuture; /// Send request and extra headers, returns Response and Framed - fn open_tunnel_extra(self, + fn open_tunnel_extra( + self, head: Rc, extra_headers: Option, ) -> Self::TunnelFuture;