summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDouwe Maan <douwe@gitlab.com>2015-04-01 14:36:17 +0200
committerDouwe Maan <douwe@gitlab.com>2015-04-01 14:36:17 +0200
commit85b29f99f0c0bc8cad71d323b744c740d8be7ce0 (patch)
treed5b79abee0092037a9729f5a5f840f62e7aabc11
parent91761b06851832be643258f390ea7593beacae16 (diff)
downloadgitlab-ce-repository-archive-worker.tar.gz
Make sure Sidekiq picks up archive_repo queue in production.repository-archive-worker
-rwxr-xr-xbin/background_jobs2
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/background_jobs b/bin/background_jobs
index 59a51c5c868..a041a4b0433 100755
--- a/bin/background_jobs
+++ b/bin/background_jobs
@@ -37,7 +37,7 @@ start_no_deamonize()
start_sidekiq()
{
- 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
+ bundle exec sidekiq -q post_receive -q mailer -q archive_repo -q system_hook -q project_web_hook -q gitlab_shell -q common -q default -e $RAILS_ENV -P $sidekiq_pidfile $@ >> $sidekiq_logfile 2>&1
}
load_ok()