diff options
author | Marin Jankovski <maxlazio@gmail.com> | 2013-10-16 13:39:09 +0200 |
---|---|---|
committer | Marin Jankovski <maxlazio@gmail.com> | 2013-10-16 13:39:09 +0200 |
commit | f3d77a7661a9933bd194ed6634f8383ac9fd0448 (patch) | |
tree | 714ad1dde3621177fb2a6e32343143a059542da2 | |
parent | 615d859f9402116f66c18cb97f935400086f61cf (diff) | |
download | gitlab-ce-f3d77a7661a9933bd194ed6634f8383ac9fd0448.tar.gz |
Add invert match to sidekiq match.
-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 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 |