1
0
Fork 0
mirror of https://github.com/actix/actix-web.git synced 2024-10-21 09:23:54 +00: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,7 +282,11 @@ impl RunningState {
impl Pipeline {
fn release_conn(&mut self) {
if let Some(conn) = self.conn.take() {
conn.release()
if self.close {
conn.close()
} else {
conn.release()
}
}
}