Skip to content

Commit 2f944c9

Browse files
committed
remove version from the Server header
while we still want to know which server is running to ease operation, the version was giving too much information on the installation, so let's remove it.
1 parent abc621b commit 2f944c9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

gunicorn/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,4 +5,4 @@
55

66
version_info = (20, 0, 4)
77
__version__ = ".".join([str(v) for v in version_info])
8-
SERVER_SOFTWARE = "gunicorn/%s" % __version__
8+
SERVER_SOFTWARE = "gunicorn"

0 commit comments

Comments
 (0)