File tree 4 files changed +25
-3
lines changed
4 files changed +25
-3
lines changed Original file line number Diff line number Diff line change @@ -5,6 +5,7 @@ Release Notes
5
5
.. toctree ::
6
6
:maxdepth: 2
7
7
8
+ release-notes/version-4.4.17
8
9
release-notes/version-4.4.16
9
10
release-notes/version-4.4.15
10
11
release-notes/version-4.4.14
Original file line number Diff line number Diff line change
1
+ ==============
2
+ Version 4.4.17
3
+ ==============
4
+
5
+ Version 4.4.17 of mod_wsgi can be obtained from:
6
+
7
+ https://codeload.github.com/GrahamDumpleton/mod_wsgi/tar.gz/4.4.17
8
+
9
+ For details on the availability of Windows binaries see:
10
+
11
+ https://github.com/GrahamDumpleton/mod_wsgi/tree/master/win32
12
+
13
+ Bugs Fixed
14
+ ----------
15
+
16
+ 1. If ``mod_wsgi-express `` was run under a user ID for which there was no
17
+ password entry in the system password file, it would fail when looking up
18
+ the user name. If this occurs now use ``#nnn `` as the default user name.
Original file line number Diff line number Diff line change @@ -50,7 +50,10 @@ def where():
50
50
return MOD_WSGI_SO
51
51
52
52
def default_run_user ():
53
- return pwd .getpwuid (os .getuid ()).pw_name
53
+ try :
54
+ return pwd .getpwuid (os .getuid ()).pw_name
55
+ except KeyError :
56
+ return '#%d' % os .getuid ()
54
57
55
58
def default_run_group ():
56
59
try :
Original file line number Diff line number Diff line change 25
25
26
26
#define MOD_WSGI_MAJORVERSION_NUMBER 4
27
27
#define MOD_WSGI_MINORVERSION_NUMBER 4
28
- #define MOD_WSGI_MICROVERSION_NUMBER 16
29
- #define MOD_WSGI_VERSION_STRING "4.4.16 "
28
+ #define MOD_WSGI_MICROVERSION_NUMBER 17
29
+ #define MOD_WSGI_VERSION_STRING "4.4.17 "
30
30
31
31
/* ------------------------------------------------------------------------- */
32
32
You can’t perform that action at this time.
0 commit comments