unicorn.god.erb fix god restarting

This commit is contained in:
Bob Potter 2012-02-07 11:16:01 -06:00
parent 7072baef73
commit 322f7c4192
1 changed files with 1 additions and 1 deletions

View File

@ -1,5 +1,5 @@
# Unicorn specific
w.pid_file = "<%= engine.directory + "/tmp/pids/unicorn.pid" %>"
w.stop = "kill -QUIT `cat #{w.pid_file}`"
w.restart = "kill -USR2 `cat #{w.pid_file}` && sleep 20 && kill -QUIT #{w.pid_file}.oldbin"
w.restart = "kill -USR2 `cat #{w.pid_file}` && sleep 20 && kill -QUIT `cat #{w.pid_file}.oldbin`"
w.behavior(:clean_pid_file)