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/config
diff options
context:
space:
mode:
authorDJ Mountney <david@twkie.net>2016-06-24 18:47:08 +0300
committerDJ Mountney <david@twkie.net>2016-06-24 18:47:08 +0300
commit4cfb1af0b716501700e0e62ee0e514f498aa699c (patch)
treef528a39dd1e0785ae6c07d532dd632e7cf5ba5f5 /config
parent59b5bb033409901dc8e1fa7fa28c3a0fa38f495a (diff)
Set the health_check mailer full checks to be the same as the standard checks
There was nothing additional in the full checks that we want to run (email, custom)
Diffstat (limited to 'config')
-rw-r--r--config/initializers/health_check.rb1
1 files changed, 1 insertions, 0 deletions
diff --git a/config/initializers/health_check.rb b/config/initializers/health_check.rb
index 3b027753334..6796407d4e6 100644
--- a/config/initializers/health_check.rb
+++ b/config/initializers/health_check.rb
@@ -13,4 +13,5 @@ end
HealthCheck.setup do |config|
config.standard_checks = ['database', 'migrations', 'cache']
+ config.full_checks = ['database', 'migrations', 'cache']
end