Fix health checks (#663)

This commit is contained in:
shawn-higgins1
2019-07-23 15:56:04 -04:00
committed by Jesus Federico
parent 81aea827ba
commit 0a6bce1384
3 changed files with 3 additions and 14 deletions

View File

@ -23,17 +23,11 @@ HealthCheck.setup do |config|
config.http_status_for_error_object = 500
# bucket names to test connectivity - required only if s3 check used, access permissions can be mixed
config.buckets = { 'bucket_name' => [:R, :W, :D] }
# You can customize which checks happen on a standard health check, eg to set an explicit list use:
config.standard_checks = %w(database migrations custom)
# Or to exclude one check:
config.standard_checks -= %w(emailconf)
config.standard_checks = %w(database migrations emailconf)
# You can set what tests are run with the 'full' or 'all' parameter
config.full_checks = %w(database migrations custom email cache redis resque-redis sidekiq-redis s3)
config.full_checks = %w(database migrations email cache)
# max-age of response in seconds
# cache-control is public when max_age > 1 and basic_auth_username is not set
@ -43,7 +37,4 @@ HealthCheck.setup do |config|
# http status code used when the ip is not allowed for the request
config.http_status_for_ip_whitelist_error = 403
# When redis url is non-standard
config.redis_url = 'redis_url'
end