summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDJ Mountney <david@twkie.net>2016-06-24 08:47:08 -0700
committerDJ Mountney <david@twkie.net>2016-06-24 08:47:08 -0700
commit4cfb1af0b716501700e0e62ee0e514f498aa699c (patch)
treef528a39dd1e0785ae6c07d532dd632e7cf5ba5f5
parent59b5bb033409901dc8e1fa7fa28c3a0fa38f495a (diff)
downloadgitlab-ce-4cfb1af0b716501700e0e62ee0e514f498aa699c.tar.gz
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)
-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