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