0
0
Fork 0

Add healthcheck endpoint for web (#11770)

This commit is contained in:
Yamagishi Kazutoshi 2019-09-07 09:47:51 +09:00 committed by Eugen Rochko
parent e445a8af64
commit d7268befa8
6 changed files with 15 additions and 3 deletions

View file

@ -0,0 +1,6 @@
HealthCheck.setup do |config|
config.uri = 'health'
config.standard_checks = %w(database migrations cache)
config.full_checks = %w(database migrations cache)
end