Skip to content

Commit

Permalink
remove version from the Server header
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
benoitc committed Jan 10, 2020
1 parent abc621b commit 2f944c9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion gunicorn/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,4 @@

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

0 comments on commit 2f944c9

Please sign in to comment.