Clarify documentation of graceful_timeout

This commit is contained in:
Zoltán Nagy 2015-10-30 11:24:08 +01:00 committed by Zoltan Nagy
parent 821123d48f
commit f1bb0342ec
2 changed files with 6 additions and 6 deletions

View File

@ -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
~~~~~~~~~

View File

@ -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.
"""