Merge pull request #1137 from abesto/doc/graceful_timeout

Clarify documentation of graceful_timeout
This commit is contained in:
Berker Peksag 2015-11-02 12:15:38 +02:00
commit eb29a449aa
2 changed files with 6 additions and 6 deletions

View File

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

View File

@ -681,9 +681,9 @@ class GracefulTimeout(Setting):
desc = """\ desc = """\
Timeout for graceful workers restart. Timeout for graceful workers restart.
Generally set to thirty seconds. How max time worker can handle After receiving a restart signal, workers have this much time to finish
request after got restart signal. If the time is up worker will serving requests. Workers still alive after the timeout (starting from
be force killed. the receipt of the restart signal) are force killed.
""" """