Commit 53413f128d049a7f45e4b3daf3dd0c3408a777e9
Exists in
master
and in
4 other branches
Merge pull request #3837 from majjacz/patch-1
Changed forgotten unicorn to puma in the init script
Showing
1 changed file
with
1 additions
and
1 deletions
Show diff stats
lib/support/init.d/gitlab
... | ... | @@ -89,7 +89,7 @@ status() { |
89 | 89 | cd $APP_ROOT |
90 | 90 | check_pid |
91 | 91 | if [ "$PID" -ne 0 -a "$STATUS" -ne 0 ]; then |
92 | - echo "$DESC / Unicorn with PID $PID is running." | |
92 | + echo "$DESC / Puma with PID $PID is running." | |
93 | 93 | echo "$DESC / Sidekiq with PID $SPID is running." |
94 | 94 | else |
95 | 95 | echo "$DESC is not running." | ... | ... |