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/lib
diff options
context:
space:
mode:
authorJacob Vosmaer <contact@jacobvosmaer.nl>2016-04-12 18:07:54 +0300
committerJacob Vosmaer <contact@jacobvosmaer.nl>2016-04-12 18:07:54 +0300
commit97f4ffff1e7b5da94e18edc20c009ffb46784187 (patch)
tree5d49026f25bfacb529dafc9142250681f4263cfb /lib
parentb37d3b9423991763ad03fca791a1daf473dafed1 (diff)
Add a 'circuit breaker' for repo checks
Diffstat (limited to 'lib')
-rw-r--r--lib/gitlab/current_settings.rb3
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/gitlab/current_settings.rb b/lib/gitlab/current_settings.rb
index 1acc22fe5bf..f44d1b3a44e 100644
--- a/lib/gitlab/current_settings.rb
+++ b/lib/gitlab/current_settings.rb
@@ -34,7 +34,8 @@ module Gitlab
max_artifacts_size: Settings.artifacts['max_size'],
require_two_factor_authentication: false,
two_factor_grace_period: 48,
- akismet_enabled: false
+ akismet_enabled: false,
+ repository_checks_enabled: true,
)
end