mirror of
https://github.com/actix/actix-web.git
synced 2024-11-23 01:51:11 +00:00
Fix disconnect on idle connections
This commit is contained in:
parent
16c05f07ba
commit
c2d8abcee7
2 changed files with 3 additions and 1 deletions
|
@ -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)
|
||||
|
||||
|
|
|
@ -168,7 +168,7 @@ impl Inner {
|
|||
len: 0,
|
||||
err: None,
|
||||
items: VecDeque::new(),
|
||||
need_read: false,
|
||||
need_read: true,
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue