Version 4.5.14¶
Version 4.5.14 of mod_wsgi can be obtained from:
Bugs Fixed¶
Using the
--url-alias
option to therunmodwsgi
management command when integratingmod_wsgi-express
with Django could fail with Python 3. This is because the type of the items passed in an option list could be tuple or list depending on Python version. It was necessary to add items with same type else sorting would break.
New Features¶
Added a
name
attribute to the log object used in place ofsys.stdout
andsys.stderr
, and which is also used forwsgi.errors
in the per requestenviron
dictionary. This is because although thename
attribute is not required to exist, one can find code out there that assumes it always does exist for file like objects. Adding the attribute ensures that such code doesn’t fail.