django-health-check 4.0rc1__tar.gz → 4.0rc2__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (20) hide show
  1. {django_health_check-4.0rc1 → django_health_check-4.0rc2}/PKG-INFO +1 -1
  2. {django_health_check-4.0rc1 → django_health_check-4.0rc2}/health_check/_version.py +3 -3
  3. {django_health_check-4.0rc1 → django_health_check-4.0rc2}/health_check/exceptions.py +1 -6
  4. {django_health_check-4.0rc1 → django_health_check-4.0rc2}/LICENSE +0 -0
  5. {django_health_check-4.0rc1 → django_health_check-4.0rc2}/README.md +0 -0
  6. {django_health_check-4.0rc1 → django_health_check-4.0rc2}/health_check/__init__.py +0 -0
  7. {django_health_check-4.0rc1 → django_health_check-4.0rc2}/health_check/base.py +0 -0
  8. {django_health_check-4.0rc1 → django_health_check-4.0rc2}/health_check/checks.py +0 -0
  9. {django_health_check-4.0rc1 → django_health_check-4.0rc2}/health_check/contrib/__init__.py +0 -0
  10. {django_health_check-4.0rc1 → django_health_check-4.0rc2}/health_check/contrib/celery.py +0 -0
  11. {django_health_check-4.0rc1 → django_health_check-4.0rc2}/health_check/contrib/kafka.py +0 -0
  12. {django_health_check-4.0rc1 → django_health_check-4.0rc2}/health_check/contrib/rabbitmq.py +0 -0
  13. {django_health_check-4.0rc1 → django_health_check-4.0rc2}/health_check/contrib/redis.py +0 -0
  14. {django_health_check-4.0rc1 → django_health_check-4.0rc2}/health_check/contrib/rss.py +0 -0
  15. {django_health_check-4.0rc1 → django_health_check-4.0rc2}/health_check/management/__init__.py +0 -0
  16. {django_health_check-4.0rc1 → django_health_check-4.0rc2}/health_check/management/commands/__init__.py +0 -0
  17. {django_health_check-4.0rc1 → django_health_check-4.0rc2}/health_check/management/commands/health_check.py +0 -0
  18. {django_health_check-4.0rc1 → django_health_check-4.0rc2}/health_check/templates/health_check/index.html +0 -0
  19. {django_health_check-4.0rc1 → django_health_check-4.0rc2}/health_check/views.py +0 -0
  20. {django_health_check-4.0rc1 → django_health_check-4.0rc2}/pyproject.toml +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: django-health-check
3
- Version: 4.0rc1
3
+ Version: 4.0rc2
4
4
  Summary: Monitor the health of your Django app and its connected services.
5
5
  Keywords: django,postgresql
6
6
  Author-email: Kristian Ollegaard <kristian@oellegaard.com>, Johannes Maron <johannes@maron.family>
@@ -28,7 +28,7 @@ version_tuple: VERSION_TUPLE
28
28
  commit_id: COMMIT_ID
29
29
  __commit_id__: COMMIT_ID
30
30
 
31
- __version__ = version = '4.0rc1'
32
- __version_tuple__ = version_tuple = (4, 0, 'rc1')
31
+ __version__ = version = '4.0rc2'
32
+ __version_tuple__ = version_tuple = (4, 0, 'rc2')
33
33
 
34
- __commit_id__ = commit_id = 'g9814c8393'
34
+ __commit_id__ = commit_id = 'gb01cffaff'
@@ -9,12 +9,7 @@ class HealthCheckException(Exception):
9
9
 
10
10
 
11
11
  class ServiceWarning(HealthCheckException):
12
- """
13
- Warning of service misbehavior.
14
-
15
- If the `HealthCheckView.warnings_as_errors` is set to True,
16
- this will be treated as and fail the health check.
17
- """
12
+ """Warning of service misbehavior."""
18
13
 
19
14
  message_type = "Warning"
20
15