Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorAbe Voelker <abe@abevoelker.com>2012-06-26 20:38:30 +0400
committerAbe Voelker <abe@abevoelker.com>2012-06-26 20:38:35 +0400
commit9a7cce2fa9ba17711a5dc68c6da25c651846f6d1 (patch)
tree91b85263c2ebc4a517e324ab8c1756e20ff40ada /doc
parent666cdb22792dd955a286b9993d6235b4cdd68b4b (diff)
Fix resque worker becoming paused on restarts
Diffstat (limited to 'doc')
-rw-r--r--doc/installation.md2
1 files changed, 0 insertions, 2 deletions
diff --git a/doc/installation.md b/doc/installation.md
index bf579b174c3..30536047b73 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."
;;
*)