diff --git a/gunicorn/http/tee.py b/gunicorn/http/tee.py index 82e5c449..57291775 100644 --- a/gunicorn/http/tee.py +++ b/gunicorn/http/tee.py @@ -36,6 +36,7 @@ class TeeInput(object): chunk, self.buf = parser.filter_body(buf) if chunk: self.tmp.write(chunk) + self.tmp.flush() self._finalize() self.tmp.seek(0)