Set the content-length header for sendfile. Fixes #447

This commit is contained in:
Armin Ronacher 2012-10-07 15:24:03 +02:00
parent de5038f2fb
commit 3bec75d230
2 changed files with 2 additions and 0 deletions

View File

@ -13,6 +13,7 @@ Release date to be decided.
:ref:`upgrading-to-010` for more information.
- Added ``template_test`` methods in addition to the already existing
``template_filter`` method family.
- Set the content-length header for x-sendfile.
Version 0.9
-----------

View File

@ -541,6 +541,7 @@ def send_file(filename_or_fp, mimetype=None, as_attachment=False,
if file is not None:
file.close()
headers['X-Sendfile'] = filename
headers['Content-Length'] = os.path.getsize(filename)
data = None
else:
if file is None: