README.md in serverengine-2.0.6 vs README.md in serverengine-2.0.7
- old
+ new
@@ -317,11 +317,12 @@
- **QUIT:** immediate shutdown (available only when `worker_type` is "process")
- **USR1:** graceful restart
- **HUP:** immediate restart (available only when `worker_type` is "process")
- **USR2:** reload config file and reopen log file
- **INT:** detach process for live restarting (available only when `supervisor` and `enable_detach` parameters are true. otherwise graceful shutdown)
-- **CONT:** dump stacktrace and memory information to /tmp/sigdump-<pid>.log file
+- **CONT:** dump stacktrace and memory information to /tmp/sigdump-<pid>.log file. This can be
+ disabled by including `disable_sigdump: true` in the configuration.
Immediate shutdown and restart send SIGQUIT signal to worker processes which kills the processes.
Graceful shutdown and restart call `Worker#stop` method and wait for completion of `Worker#run` method.
Note that signals are not supported on Windows.
@@ -461,9 +462,10 @@
- Daemon
- **daemonize** enables daemonize (default: false)
- **pid_path** sets the path to pid file (default: don't create pid file)
- **supervisor** enables supervisor if it's true (default: false)
+ - **disable_sigdump** disables the handling of the `SIGCONT` signal and dumping of the thread (default: false)
- **daemon_process_name** changes process name ($0) of server or supervisor process
- **chuser** changes execution user
- **chgroup** changes execution group
- **chumask** changes umask
- **daemonize_error_exit_code** exit code when daemonize, changing user or changing group fails (default: 1)