Commit 9a7cce2fa9ba17711a5dc68c6da25c651846f6d1

Authored by Abe Voelker
1 parent 666cdb22

Fix resque worker becoming paused on restarts

Showing 1 changed file with 0 additions and 2 deletions   Show diff stats
doc/installation.md
... ... @@ -299,13 +299,11 @@ Create init script in /etc/init.d/gitlab:
299 299 restart)
300 300 echo -n "Restarting $DESC: "
301 301 kill -USR2 `cat $PID`
302   - kill -USR2 `cat $RESQUE_PID`
303 302 echo "$NAME."
304 303 ;;
305 304 reload)
306 305 echo -n "Reloading $DESC configuration: "
307 306 kill -HUP `cat $PID`
308   - kill -HUP `cat $RESQUE_PID`
309 307 echo "$NAME."
310 308 ;;
311 309 *)
... ...