Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/script
diff options
context:
space:
mode:
authorJacob Vosmaer <contact@jacobvosmaer.nl>2014-04-01 18:46:27 +0400
committerJacob Vosmaer <contact@jacobvosmaer.nl>2014-04-01 18:46:27 +0400
commit03b14bb814a655b1ba13f318f67b78147ec47546 (patch)
tree5c4e81c153e5d53eee231f49b3667d05df10dfd8 /script
parent3b0510a7c124a8511966ad4785757bd4d78998ac (diff)
Use the new Sidekiq syntax to specify queues
This syntax is compatible with the current Sidekiq version we use (2.17.0) and it protects us against future breakage by https://github.com/mperham/sidekiq/commit/040eda558bc64139c846c781d3de0b79603e3035
Diffstat (limited to 'script')
-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