Commit 35b45da63e683e29318afac2e41ec8b3ac8419ab
Exists in
master
and in
4 other branches
Merge pull request #984 from abevoelker/fix-init.d-resque
Fix resque worker becoming paused on restarts
Showing
1 changed file
with
0 additions
and
2 deletions
Show diff stats
doc/installation.md
... | ... | @@ -307,13 +307,11 @@ Create init script in /etc/init.d/gitlab: |
307 | 307 | restart) |
308 | 308 | echo -n "Restarting $DESC: " |
309 | 309 | kill -USR2 `cat $PID` |
310 | - kill -USR2 `cat $RESQUE_PID` | |
311 | 310 | echo "$NAME." |
312 | 311 | ;; |
313 | 312 | reload) |
314 | 313 | echo -n "Reloading $DESC configuration: " |
315 | 314 | kill -HUP `cat $PID` |
316 | - kill -HUP `cat $RESQUE_PID` | |
317 | 315 | echo "$NAME." |
318 | 316 | ;; |
319 | 317 | *) | ... | ... |