summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>2014-04-01 16:27:54 +0000
committerDmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>2014-04-01 16:27:54 +0000
commita37f8fc6db482e3f561e264059ec2f04fe96f07d (patch)
treef91878f7772cb32ae68c3a14eaa0942ebb4b8544
parent69432c885c7f77489c2b3a3cf118c7622647ac9b (diff)
parent03b14bb814a655b1ba13f318f67b78147ec47546 (diff)
downloadgitlab-ce-a37f8fc6db482e3f561e264059ec2f04fe96f07d.tar.gz
Merge branch 'new_sidekiq_cli_syntax' into 'master'
New Sidekiq CLI syntax
-rwxr-xr-xscript/background_jobs2
1 files changed, 1 insertions, 1 deletions
diff --git a/script/background_jobs b/script/background_jobs
index 52732f5532b..e0140e9689b 100755
--- a/script/background_jobs
+++ b/script/background_jobs
@@ -37,7 +37,7 @@ function start_no_deamonize
function start_sidekiq
{
- bundle exec sidekiq -q post_receive,mailer,system_hook,project_web_hook,gitlab_shell,common,default -e $RAILS_ENV -P $sidekiq_pidfile $@ >> $sidekiq_logfile 2>&1
+ bundle exec sidekiq -q post_receive -q mailer -q system_hook -q project_web_hook -q gitlab_shell -q common -q default -e $RAILS_ENV -P $sidekiq_pidfile $@ >> $sidekiq_logfile 2>&1
}
function load_ok