about summary refs log tree commit homepage
diff options
context:
space:
mode:
authorEric Wong <normalperson@yhbt.net>2009-04-24 14:54:17 -0700
committerEric Wong <normalperson@yhbt.net>2009-04-24 14:54:17 -0700
commitffe6208286b282db2b2e35ae811c9bd014098fe0 (patch)
tree0de0ac77661aae4f405bdbaa2534464a535a36d0
parentd3b0894e9be04a245cb0bd720707f2249fe2e1e9 (diff)
downloadunicorn-ffe6208286b282db2b2e35ae811c9bd014098fe0.tar.gz
-rw-r--r--SIGNALS52
1 files changed, 26 insertions, 26 deletions
diff --git a/SIGNALS b/SIGNALS
index 7cd087f..01b284e 100644
--- a/SIGNALS
+++ b/SIGNALS
@@ -6,28 +6,28 @@ processes are documented here as well.
 
 === Master Process
 
- * HUP - reload config file and gracefully restart all workers
-   If "preload_app" is false (the default), the application code
-   will be reloaded when workers are restarted as well.
+* HUP - reload config file and gracefully restart all workers
+  If "preload_app" is false (the default), the application code
+  will be reloaded when workers are restarted as well.
 
- * INT/TERM - quick shutdown, kills all workers immediately
+* INT/TERM - quick shutdown, kills all workers immediately
 
- * QUIT - graceful shutdown, waits for workers to finish their
-   current request before finishing.
+* QUIT - graceful shutdown, waits for workers to finish their
+  current request before finishing.
 
- * USR1 - reopen all logs owned by the master and all workers
-   See Unicorn::Util.reopen_logs for what is considered a log.
+* USR1 - reopen all logs owned by the master and all workers
+  See Unicorn::Util.reopen_logs for what is considered a log.
 
- * USR2 - reexecute the running binary.  A separate QUIT
-   should be sent to the original process once the child is verified to
-   be up and running.
+* USR2 - reexecute the running binary.  A separate QUIT
+  should be sent to the original process once the child is verified to
+  be up and running.
 
- * WINCH - gracefully stops workers but keep the master running.
-   This will only work for daemonized processes.
+* WINCH - gracefully stops workers but keep the master running.
+  This will only work for daemonized processes.
 
- * TTIN - increment the number of worker processes by one
+* TTIN - increment the number of worker processes by one
 
- * TTOU - decrement the number of worker processes by one
+* TTOU - decrement the number of worker processes by one
 
 === Worker Processes
 
@@ -35,19 +35,19 @@ Sending signals directly to the worker processes should not normally be
 needed.  If the master process is running, any exited worker will be
 automatically respawned.
 
- * INT/TERM - Quick shutdown, immediately exit.
-   Unless WINCH has been sent to the master (or the master is killed),
-   the master process will respawn a worker to replace this one.
+* INT/TERM - Quick shutdown, immediately exit.
+  Unless WINCH has been sent to the master (or the master is killed),
+  the master process will respawn a worker to replace this one.
 
- * QUIT - Gracefully exit after finishing the current request.
-   Unless WINCH has been sent to the master (or the master is killed),
-   the master process will respawn a worker to replace this one.
+* QUIT - Gracefully exit after finishing the current request.
+  Unless WINCH has been sent to the master (or the master is killed),
+  the master process will respawn a worker to replace this one.
 
- * USR1 - Reopen all logs owned by the worker process.
-   See Unicorn::Util.reopen_logs for what is considered a log.
-   Log files are not reopened until it is done processing
-   the current request, so multiple log lines for one request
-   (as done by Rails) will not be split across multiple logs.
+* USR1 - Reopen all logs owned by the worker process.
+  See Unicorn::Util.reopen_logs for what is considered a log.
+  Log files are not reopened until it is done processing
+  the current request, so multiple log lines for one request
+  (as done by Rails) will not be split across multiple logs.
 
 === Procedure to replace a running unicorn executable