1
0
mirror of https://github.com/fafhrd91/actix-web synced 2025-06-26 15:07:42 +02:00

fix stuck connection when handler doesn't read payload (#2624)

This commit is contained in:
Rob Ede
2022-02-03 07:03:39 +00:00
committed by GitHub
parent fc5ecdc30b
commit 5ca42df89a
6 changed files with 307 additions and 27 deletions

View File

@ -1,6 +1,14 @@
# Changes
## Unreleased - 2021-xx-xx
### Changed
- `error::DispatcherError` enum is now marked `#[non_exhaustive]`. [#2624]
### Fixed
- Issue where handlers that took payload but then dropped without reading it to EOF it would cause keep-alive connections to become stuck. [#2624]
[#2624]: https://github.com/actix/actix-web/pull/2624
## 3.0.0-rc.1 - 2022-01-31