diff options
author | Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com> | 2013-01-09 20:31:05 +0200 |
---|---|---|
committer | Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com> | 2013-01-09 20:31:05 +0200 |
commit | 6869a5640347bb391aea657c763716f27dea380e (patch) | |
tree | 3ea350146c4cc60c6870ba983a036f6450a8ed62 /lib | |
parent | 16b61590ab4ca046ea7a2dbab3703367df56d108 (diff) | |
download | gitlab-ce-6869a5640347bb391aea657c763716f27dea380e.tar.gz |
Fix sidekiq chech and added script/check
Diffstat (limited to 'lib')
-rw-r--r-- | lib/tasks/gitlab/check.rake | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/tasks/gitlab/check.rake b/lib/tasks/gitlab/check.rake index db181cb9a96..5d850a17fe3 100644 --- a/lib/tasks/gitlab/check.rake +++ b/lib/tasks/gitlab/check.rake @@ -888,7 +888,7 @@ namespace :gitlab do def check_resque_running print "Running? ... " - if run_and_match("ps aux | grep -i sidekiq", /sidekiq-[\d\.]+:.+$/) + if run_and_match("ps aux | grep -i sidekiq", /sidekiq \d\.\d\.\d.+$/) puts "yes".green else puts "no".red |