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

include content-length to error response

This commit is contained in:
Nikolay Kim 2018-08-07 11:56:39 -07:00
parent 16546a707f
commit 58a079bd10

View File

@ -21,6 +21,7 @@ impl HttpHandlerTask for ServerError {
bytes.reserve(helpers::STATUS_LINE_BUF_SIZE + 1); bytes.reserve(helpers::STATUS_LINE_BUF_SIZE + 1);
helpers::write_status_line(self.0, self.1.as_u16(), bytes); helpers::write_status_line(self.0, self.1.as_u16(), bytes);
} }
io.buffer().extend_from_slice(b"\r\ncontent-length: 0\r\n");
io.set_date(); io.set_date();
Ok(Async::Ready(true)) Ok(Async::Ready(true))
} }