1
0
mirror of https://github.com/actix/actix-extras.git synced 2024-11-24 16:02:59 +01:00

close conneciton for head requests

This commit is contained in:
Nikolay Kim 2018-07-06 09:21:24 +06:00
parent a5f7a67b4d
commit cfa470db50

View File

@ -202,6 +202,7 @@ impl Future for SendRequest {
should_decompress: self.req.response_decompress(),
write_state: RunningState::Running,
timeout: Some(timeout),
close: self.req.method() == &Method::HEAD,
});
self.state = State::Send(pl);
}
@ -247,6 +248,7 @@ pub struct Pipeline {
should_decompress: bool,
write_state: RunningState,
timeout: Option<Delay>,
close: bool,
}
enum IoBody {
@ -280,9 +282,13 @@ impl RunningState {
impl Pipeline {
fn release_conn(&mut self) {
if let Some(conn) = self.conn.take() {
if self.close {
conn.close()
} else {
conn.release()
}
}
}
#[inline]
fn parse(&mut self) -> Poll<ClientResponse, HttpResponseParserError> {