1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48
|
===========
Version 2.2
===========
Version 2.2 of mod_wsgi can be obtained from:
http://modwsgi.googlecode.com/files/mod_wsgi-2.2.tar.gz
**Note: This version was quickly superseded by version 2.3 of mod_wsgi.
Version 2.2 should not be used.**
Features Changed
----------------
1. Use official way of setting process names on FreeBSD, NetBSD and OpenBSD.
For details see:
https://code.google.com/archive/p/modwsgi/issues/90
This is a backport of change from version 3.0 of mod_wsgi.
Bug Fixes
---------
1. Fix bug whereby if mod_python is loaded at same time as mod_wsgi the
WSGIImportScript directive can cause Apache child processes to crash.
For details see:
https://code.google.com/archive/p/modwsgi/issues/91
2. Fix bug where mod_wsgi daemon process startup could fail due to old stale
UNIX listener socket file as described in:
https://code.google.com/archive/p/modwsgi/issues/77
3. Fix bug where listener socket file descriptors for daemon processes were
being leaked in Apache parent process on a graceful restart. Also fixes
problem where UNIX listener socket was left in filesystem on both graceful
restart and graceful shutdown. For details see:
https://code.google.com/archive/p/modwsgi/issues/95
4. Fix bug where response was truncated when a null character appeared as
first character in block of data being returned from wsgi.file_wrapper. Only
occurred when code fell back to using iteration over supplied file like
object, rather than optimised method such as sendfile().
https://code.google.com/archive/p/modwsgi/issues/100
|