- further healthz improvements

This commit is contained in:
Josako
2025-09-07 14:55:01 +02:00
parent 575bfa259e
commit 36575c17a8
3 changed files with 5 additions and 23 deletions

View File

@@ -86,14 +86,6 @@ def create_app(config_file=None):
# Register Cache Handlers
register_cache_handlers(app)
# Register standard health endpoints at /healthz (liveness/readiness)
# These must be public and not require authentication.
# try:
# from flask_healthz import healthz as healthz_blueprint
# app.register_blueprint(healthz_blueprint, url_prefix="/healthz")
# except Exception as e:
# app.logger.warning(f"Failed to register /healthz blueprint: {e}")
# Custom url_for function for templates
@app.context_processor
def override_url_for():