revsys / django-health-check

a pluggable app that runs a full check on the deployment, using a number of plugins to check e.g. database, queue server, celery processes, etc.
https://readthedocs.org/projects/django-health-check/
MIT License
1.22k stars 191 forks source link

Raise HealthCheckException directly from BaseStorageBackend.check_status #435

Open scottgigante opened 2 months ago

scottgigante commented 2 months ago

Currently, all HealthCheckExceptions are raised as "unknown exception" from the storage healthcheck, even if they are, indeed, known exceptions. This PR fixes that.