Fix resque worker becoming paused on restarts

This commit is contained in:
Abe Voelker 2012-06-26 11:38:30 -05:00
parent 666cdb2279
commit 9a7cce2fa9

View file

@ -299,13 +299,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."
;;
*)