Skip to content

Commit

Permalink
Clarify documentation of graceful_timeout
Browse files Browse the repository at this point in the history
  • Loading branch information
abesto committed Nov 2, 2015
1 parent 821123d commit f1bb034
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions docs/source/settings.rst
Original file line number Diff line number Diff line change
Expand Up @@ -185,9 +185,9 @@ graceful_timeout

Timeout for graceful workers restart.

Generally set to thirty seconds. How max time worker can handle
request after got restart signal. If the time is up worker will
be force killed.
After receiving a restart signal, workers have this much time to finish
serving requests. Workers still alive after the timeout (starting from
the receipt of the restart signal) are force killed.

keepalive
~~~~~~~~~
Expand Down
6 changes: 3 additions & 3 deletions gunicorn/config.py
Original file line number Diff line number Diff line change
Expand Up @@ -681,9 +681,9 @@ class GracefulTimeout(Setting):
desc = """\
Timeout for graceful workers restart.
Generally set to thirty seconds. How max time worker can handle
request after got restart signal. If the time is up worker will
be force killed.
After receiving a restart signal, workers have this much time to finish
serving requests. Workers still alive after the timeout (starting from
the receipt of the restart signal) are force killed.
"""


Expand Down

0 comments on commit f1bb034

Please sign in to comment.