Commit 9a7cce2f authored by Abe Voelker's avatar Abe Voelker

Fix resque worker becoming paused on restarts

parent 666cdb22
......@@ -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."
;;
*)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment