Merge branch 'rs-geo_bulk_notify_worker_cron' into 'master'

Add geo_bulk_notify_worker_cron values for gitlab-rails



See merge request !729
This commit is contained in:
Marin Jankovski 2016-04-13 13:06:16 +00:00
commit 219125bf4f
3 changed files with 7 additions and 0 deletions

View File

@ -40,6 +40,7 @@ external_url 'GENERATED_EXTERNAL_URL'
# gitlab_rails['historical_data_worker_cron'] = "0 12 * * *"
# gitlab_rails['update_all_mirrors_worker_cron'] = "0 * * * *"
# gitlab_rails['ldap_sync_worker_cron'] = "30 1 * * *"
# gitlab_rails['geo_bulk_notify_worker_cron'] = "*/10 * * * * *"
# gitlab_rails['webhook_timeout'] = 10
## Reply by email

View File

@ -92,6 +92,7 @@ default['gitlab']['gitlab-rails']['stuck_ci_builds_worker_cron'] = nil
default['gitlab']['gitlab-rails']['historical_data_worker_cron'] = nil
default['gitlab']['gitlab-rails']['update_all_mirrors_worker_cron'] = nil
default['gitlab']['gitlab-rails']['ldap_sync_worker_cron'] = nil
default['gitlab']['gitlab-rails']['geo_bulk_notify_worker_cron'] = nil
default['gitlab']['gitlab-rails']['incoming_email_enabled'] = false
default['gitlab']['gitlab-rails']['incoming_email_address'] = nil
default['gitlab']['gitlab-rails']['incoming_email_host'] = nil

View File

@ -166,6 +166,11 @@ production: &base
ldap_sync_worker:
cron: <%= @ldap_sync_worker_cron %>
# Gitlab Geo nodes notification worker
# NOTE: This will only take effect if Geo is enabled
geo_bulk_notify_worker:
cron: <%= @geo_bulk_notify_worker_cron %>
#
# 2. GitLab CI settings
# ==========================