api/routes/health.py reads settings.redis_host for its Redis probe, but the Settings model does not define that field, so the endpoint raises AttributeError before it can report Redis status.
Steps to reproduce: call GET /health and observe the AttributeError for redis_host; grep redis_host core/config.py confirms the field is absent from Settings.
api/routes/health.pyreadssettings.redis_hostfor its Redis probe, but theSettingsmodel does not define that field, so the endpoint raisesAttributeErrorbefore it can report Redis status.Steps to reproduce: call
GET /healthand observe theAttributeErrorforredis_host;grep redis_host core/config.pyconfirms the field is absent from Settings.