diff options
| author | Michael Merickel <michael@merickel.org> | 2020-05-20 16:05:56 -0500 |
|---|---|---|
| committer | Michael Merickel <michael@merickel.org> | 2020-05-20 16:20:14 -0500 |
| commit | a15c7f0eb2b917664bd211d30291ed98cfd35294 (patch) | |
| tree | 3db2a6f7277669153a4bc9cb420ebbd33ab03028 | |
| parent | 561735bc8be151dd1f04c459d5c6ebfa451bc951 (diff) | |
| download | waitress-fix-265.tar.gz | |
add changelog for #300fix-265
| -rw-r--r-- | CHANGES.txt | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/CHANGES.txt b/CHANGES.txt index 701c2b0..c40246b 100644 --- a/CHANGES.txt +++ b/CHANGES.txt @@ -1,3 +1,14 @@ +Unreleased +---------- + +- Fix an issue with keep-alive connections in which memory usage was higher + than expected because output buffers were being reused across requests on + a long-lived connection and each buffer would not be freed until it was full + or the connection was closed. Buffers are now rotated per-request to + stabilize their behavior. + + See https://github.com/Pylons/waitress/pull/300 + 1.4.3 (2020-02-02) ------------------ |
