diff options
author | Graham Dumpleton <Graham.Dumpleton@gmail.com> | 2018-03-04 21:25:10 +1100 |
---|---|---|
committer | Graham Dumpleton <Graham.Dumpleton@gmail.com> | 2018-03-04 21:25:10 +1100 |
commit | f0186d7fad96f9158afb134f18199c76468418d9 (patch) | |
tree | 049dedd27948042f2671b7db613b4962ed9e2af7 /src | |
parent | 12bcc05eedda6f1c5ffd33aa01b985f1653a3300 (diff) | |
parent | 08835df864c342a43d90eedb708067ac2a33b012 (diff) | |
download | mod_wsgi-4.6.2.tar.gz |
Merge branch 'release/4.6.2'4.6.2
Diffstat (limited to 'src')
-rw-r--r-- | src/server/mod_wsgi.c | 3 | ||||
-rwxr-xr-x | src/server/wsgi_version.h | 4 |
2 files changed, 5 insertions, 2 deletions
diff --git a/src/server/mod_wsgi.c b/src/server/mod_wsgi.c index 6913373..375e35f 100644 --- a/src/server/mod_wsgi.c +++ b/src/server/mod_wsgi.c @@ -3703,6 +3703,9 @@ static PyObject *wsgi_load_source(apr_pool_t *pool, request_rec *r, process_group, application_group, filename); } Py_END_ALLOW_THREADS + + wsgi_log_python_error(r, NULL, filename, 0); + return NULL; } diff --git a/src/server/wsgi_version.h b/src/server/wsgi_version.h index 7a86d8e..3f5467a 100755 --- a/src/server/wsgi_version.h +++ b/src/server/wsgi_version.h @@ -25,8 +25,8 @@ #define MOD_WSGI_MAJORVERSION_NUMBER 4 #define MOD_WSGI_MINORVERSION_NUMBER 6 -#define MOD_WSGI_MICROVERSION_NUMBER 1 -#define MOD_WSGI_VERSION_STRING "4.6.1" +#define MOD_WSGI_MICROVERSION_NUMBER 2 +#define MOD_WSGI_VERSION_STRING "4.6.2" /* ------------------------------------------------------------------------- */ |