diff options
author | Douwe Maan <douwe@gitlab.com> | 2015-04-01 14:36:17 +0200 |
---|---|---|
committer | Douwe Maan <douwe@gitlab.com> | 2015-04-01 14:36:17 +0200 |
commit | 85b29f99f0c0bc8cad71d323b744c740d8be7ce0 (patch) | |
tree | d5b79abee0092037a9729f5a5f840f62e7aabc11 /bin/background_jobs | |
parent | 91761b06851832be643258f390ea7593beacae16 (diff) | |
download | gitlab-ce-85b29f99f0c0bc8cad71d323b744c740d8be7ce0.tar.gz |
Make sure Sidekiq picks up archive_repo queue in production.repository-archive-worker
Diffstat (limited to 'bin/background_jobs')
-rwxr-xr-x | bin/background_jobs | 2 |
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() |