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;