Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Extra "Server" response header is appended when tornado worker processes receive SIGHUP #1246

Comments

@bobunderson
Copy link

When tornado worker processes receive SIGHUP, extra "Server" response header is appended.
For example:

   (start process)
   $ curl -D - http://127.0.0.1:8080/foo
   HTTP/1.1 200 OK
   ...
   Server: TornadoServer/4.2 (Gunicorn/19.4.5)
   ...

   (send SIGHUP to gunicorn master process)
   $ curl -D - http://127.0.0.1:8080/foo
   HTTP/1.1 200 OK
   ...
   Server: TornadoServer/4.2 (Gunicorn/19.4.5) (Gunicorn/19.4.5)
   ...
@benoitc
Copy link
Owner

benoitc commented May 2, 2016

How do you launch the server?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment