1
0
mirror of https://github.com/linkedin/oncall.git synced 2025-11-29 23:38:17 +02:00

return GOOD instead of DEBUG for debug healthcheck

This commit is contained in:
Diego Cepeda
2021-01-28 14:32:30 -08:00
committed by Joe Gillotti
parent f0d08f2d5e
commit a7b3827083

View File

@@ -9,7 +9,7 @@ class HealthCheck(object):
def __init__(self, config):
if config.get('debug') or config.get('auth').get('debug'):
self.dummy_status = 'DEBUG'
self.dummy_status = 'GOOD'
else:
self.dummy_status = None
path = config.get('healthcheck_path')