From 9a7cce2fa9ba17711a5dc68c6da25c651846f6d1 Mon Sep 17 00:00:00 2001 From: Abe Voelker Date: Tue, 26 Jun 2012 11:38:30 -0500 Subject: [PATCH] Fix resque worker becoming paused on restarts --- doc/installation.md | 2 -- 1 file changed, 2 deletions(-) diff --git a/doc/installation.md b/doc/installation.md index bf579b17..30536047 100644 --- a/doc/installation.md +++ b/doc/installation.md @@ -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." ;; *)