mirror of
https://github.com/actix/actix-web.git
synced 2025-01-02 21:38:46 +00:00
include content-length to error response
This commit is contained in:
parent
16546a707f
commit
58a079bd10
1 changed files with 3 additions and 2 deletions
|
@ -21,6 +21,7 @@ impl HttpHandlerTask for ServerError {
|
|||
bytes.reserve(helpers::STATUS_LINE_BUF_SIZE + 1);
|
||||
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();
|
||||
Ok(Async::Ready(true))
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue