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,13 +299,11 @@ Create init script in /etc/init.d/gitlab:
299 restart) 299 restart)
300 echo -n "Restarting $DESC: " 300 echo -n "Restarting $DESC: "
301 kill -USR2 `cat $PID` 301 kill -USR2 `cat $PID`
302 - kill -USR2 `cat $RESQUE_PID`  
303 echo "$NAME." 302 echo "$NAME."
304 ;; 303 ;;
305 reload) 304 reload)
306 echo -n "Reloading $DESC configuration: " 305 echo -n "Reloading $DESC configuration: "
307 kill -HUP `cat $PID` 306 kill -HUP `cat $PID`
308 - kill -HUP `cat $RESQUE_PID`  
309 echo "$NAME." 307 echo "$NAME."
310 ;; 308 ;;
311 *) 309 *)