Commit 6869a5640347bb391aea657c763716f27dea380e
1 parent
16b61590
Exists in
master
and in
4 other branches
Fix sidekiq chech and added script/check
Showing
2 changed files
with
3 additions
and
1 deletions
Show diff stats
lib/tasks/gitlab/check.rake
... | ... | @@ -888,7 +888,7 @@ namespace :gitlab do |
888 | 888 | def check_resque_running |
889 | 889 | print "Running? ... " |
890 | 890 | |
891 | - if run_and_match("ps aux | grep -i sidekiq", /sidekiq-[\d\.]+:.+$/) | |
891 | + if run_and_match("ps aux | grep -i sidekiq", /sidekiq \d\.\d\.\d.+$/) | |
892 | 892 | puts "yes".green |
893 | 893 | else |
894 | 894 | puts "no".red | ... | ... |