summaryrefslogtreecommitdiff
path: root/docs/release-notes
diff options
context:
space:
mode:
authorGraham Dumpleton <Graham.Dumpleton@gmail.com>2020-10-04 16:53:18 +1100
committerGraham Dumpleton <Graham.Dumpleton@gmail.com>2020-10-04 16:53:18 +1100
commit9509e178e0583435a800b006b410df74e405e2b9 (patch)
tree44f9ea1fb2f12bdb95929075c240c3f1c3c2215b /docs/release-notes
parent4a6c2a78b9fedf820e367d03e8e01c767b787ce3 (diff)
downloadmod_wsgi-9509e178e0583435a800b006b410df74e405e2b9.tar.gz
Fix process crash on Apache startup due to incorrect use of memory pools.
Diffstat (limited to 'docs/release-notes')
-rw-r--r--docs/release-notes/version-4.8.0.rst13
1 files changed, 13 insertions, 0 deletions
diff --git a/docs/release-notes/version-4.8.0.rst b/docs/release-notes/version-4.8.0.rst
index 1e1032d..2c9a3cd 100644
--- a/docs/release-notes/version-4.8.0.rst
+++ b/docs/release-notes/version-4.8.0.rst
@@ -5,3 +5,16 @@ Version 4.8.0
Version 4.8.0 of mod_wsgi can be obtained from:
https://codeload.github.com/GrahamDumpleton/mod_wsgi/tar.gz/4.8.0
+
+Bugs Fixed
+----------
+
+* Fixed potential for process crash on Apache startup when the WSGI script
+ file or other Python script file were being preloaded. This was triggered
+ when ``WSGIImportScript`` was used, or if ``WSGIScriptAlias`` or
+ ``WSGIScriptAliasMatch`` were used and both the ``process-group`` and
+ ``application-group`` options were used with those directives.
+
+ The potential for this problem arising was extremely high on Alpine Linux,
+ but seem to be very rare on a full Linux of macOS distribution where glibc
+ was being used.