1
0
Fork 0
mirror of https://github.com/actix/actix-web.git synced 2024-07-04 04:55:48 +00:00

Fix disconnect on idle connections

This commit is contained in:
Nikolay Kim 2018-03-02 20:47:23 -08:00
parent 16c05f07ba
commit c2d8abcee7
2 changed files with 3 additions and 1 deletions

View file

@ -8,6 +8,8 @@
* Add csrf middleware for filter for cross-site request forgery #89
* Fix disconnect on idle connections
## 0.4.1 (2018-03-01)

View file

@ -168,7 +168,7 @@ impl Inner {
len: 0,
err: None,
items: VecDeque::new(),
need_read: false,
need_read: true,
}
}