This commit is contained in:
parent
ddee056c25
commit
475e0e7242
@ -42,7 +42,7 @@ app.config['MINIO_BUCKET_NAME'] = os.environ['MINIO_BUCKET_NAME']
|
||||
app.config['MINIO_SECURE'] = os.environ.get('MINIO_SECURE', False)
|
||||
app.config['MINIO_REGION'] = os.environ.get('MINIO_REGION', None)
|
||||
|
||||
health = HealthCheck(app, "/healthz")
|
||||
health = HealthCheck()
|
||||
|
||||
|
||||
# register error handlers
|
||||
@ -53,6 +53,7 @@ for view in [ObjectView]:
|
||||
view.register(app, trailing_slash=False)
|
||||
|
||||
health.add_check(health_database_status)
|
||||
app.add_url_rule("/healthz", "healthcheck", view_func=lambda: health.run())
|
||||
|
||||
# start debugging if needed
|
||||
if __name__ == "__main__":
|
||||
|
Loading…
Reference in New Issue
Block a user