summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGraham Dumpleton <Graham.Dumpleton@gmail.com>2022-05-02 10:07:53 +1000
committerGraham Dumpleton <Graham.Dumpleton@gmail.com>2022-05-02 10:07:53 +1000
commitcd97638292fabab7ed814d04b422bb6e0d89ee1a (patch)
treef91e669718e54b8a2e17d9f82aab714075427b74
parent08f28b4b115e45a74d7e4cc04f76a884fc863618 (diff)
downloadmod_wsgi-cd97638292fabab7ed814d04b422bb6e0d89ee1a.tar.gz
Document Pdb fix for when using debug mode.
-rw-r--r--docs/release-notes/version-4.9.1.rst13
1 files changed, 13 insertions, 0 deletions
diff --git a/docs/release-notes/version-4.9.1.rst b/docs/release-notes/version-4.9.1.rst
index d80efbc..6790ac5 100644
--- a/docs/release-notes/version-4.9.1.rst
+++ b/docs/release-notes/version-4.9.1.rst
@@ -6,6 +6,19 @@ Version 4.9.1 of mod_wsgi can be obtained from:
https://codeload.github.com/GrahamDumpleton/mod_wsgi/tar.gz/4.9.1
+Bugs Fixed
+----------
+
+* When using ``--enable-debugger`` of mod_wsgi-express to enable Pdb, it was
+ failing due to prior changes to run Apache in a sub processes to avoid Apache
+ being shutdown when the window size changed. This was because standard input
+ was being detached from Apache and so it was not possible to interact with
+ Pdb. Now when ``--enable-debugger`` is used, or any feature which uses
+ ``--debug-mode``, Apache will not be run in a sub process so that you can
+ still use standard input to interact with the process if needed. This does
+ mean that a window size change event will again cause Apache to shutdown in
+ these cases though.
+
Features Changed
----------------