diff options
Diffstat (limited to 'config/initializers/health_check.rb')
| -rw-r--r-- | config/initializers/health_check.rb | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/config/initializers/health_check.rb b/config/initializers/health_check.rb index 79e2d23ab2e..3b027753334 100644 --- a/config/initializers/health_check.rb +++ b/config/initializers/health_check.rb @@ -1,3 +1,16 @@ +# Email forcibly included in the standard checks, but the email health check +# doesn't support the full range of SMTP options, which can result in failures +# for valid SMTP configurations. +# Overwrite the HealthCheck's detection of whether email is configured +# in order to avoid the email check during standard checks +module HealthCheck + class Utils + def self.mailer_configured? + false + end + end +end + HealthCheck.setup do |config| config.standard_checks = ['database', 'migrations', 'cache'] end |
