Merge pull request #984 from abevoelker/fix-init.d-resque
Fix resque worker becoming paused on restarts
This commit is contained in:
commit
35b45da63e
|
@ -307,13 +307,11 @@ Create init script in /etc/init.d/gitlab:
|
|||
restart)
|
||||
echo -n "Restarting $DESC: "
|
||||
kill -USR2 `cat $PID`
|
||||
kill -USR2 `cat $RESQUE_PID`
|
||||
echo "$NAME."
|
||||
;;
|
||||
reload)
|
||||
echo -n "Reloading $DESC configuration: "
|
||||
kill -HUP `cat $PID`
|
||||
kill -HUP `cat $RESQUE_PID`
|
||||
echo "$NAME."
|
||||
;;
|
||||
*)
|
||||
|
|
Loading…
Reference in a new issue