From 4cfb1af0b716501700e0e62ee0e514f498aa699c Mon Sep 17 00:00:00 2001
From: DJ Mountney <david@twkie.net>
Date: Fri, 24 Jun 2016 08:47:08 -0700
Subject: [PATCH] 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)
---
 config/initializers/health_check.rb | 1 +
 1 file changed, 1 insertion(+)

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
-- 
GitLab