summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>2013-10-16 11:44:47 +0000
committerDmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>2013-10-16 11:44:47 +0000
commite9142c6f2cfcdf9a13bce375579085bd5ce00947 (patch)
tree714ad1dde3621177fb2a6e32343143a059542da2
parent615d859f9402116f66c18cb97f935400086f61cf (diff)
parentf3d77a7661a9933bd194ed6634f8383ac9fd0448 (diff)
downloadgitlab-ce-e9142c6f2cfcdf9a13bce375579085bd5ce00947.tar.gz
Merge branch 'grep_fix' of /home/git/repositories/gitlab/gitlabhq
-rw-r--r--lib/tasks/gitlab/check.rake2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/tasks/gitlab/check.rake b/lib/tasks/gitlab/check.rake
index f52b98cb3ae..573b076d60a 100644
--- a/lib/tasks/gitlab/check.rake
+++ b/lib/tasks/gitlab/check.rake
@@ -678,7 +678,7 @@ namespace :gitlab do
end
def sidekiq_process_match
- run_and_match("ps ux | grep -i sidekiq", /(sidekiq \d+\.\d+\.\d+.+$)/)
+ run_and_match("ps ux | grep -i sidekiq | grep -v grep", /(sidekiq \d+\.\d+\.\d+.+$)/)
end
end