We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 16b6159 commit 6869a56Copy full SHA for 6869a56
lib/tasks/gitlab/check.rake
@@ -888,7 +888,7 @@ namespace :gitlab do
888
def check_resque_running
889
print "Running? ... "
890
891
- if run_and_match("ps aux | grep -i sidekiq", /sidekiq-[\d\.]+:.+$/)
+ if run_and_match("ps aux | grep -i sidekiq", /sidekiq \d\.\d\.\d.+$/)
892
puts "yes".green
893
else
894
puts "no".red
script/check
@@ -0,0 +1,2 @@
1
+#!/bin/sh
2
+sudo -u gitlab -H bundle exec rake gitlab:check RAILS_ENV=production
0 commit comments