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.
- {django_health_check-4.0rc1 → django_health_check-4.0rc2}/PKG-INFO +1 -1
- {django_health_check-4.0rc1 → django_health_check-4.0rc2}/health_check/_version.py +3 -3
- {django_health_check-4.0rc1 → django_health_check-4.0rc2}/health_check/exceptions.py +1 -6
- {django_health_check-4.0rc1 → django_health_check-4.0rc2}/LICENSE +0 -0
- {django_health_check-4.0rc1 → django_health_check-4.0rc2}/README.md +0 -0
- {django_health_check-4.0rc1 → django_health_check-4.0rc2}/health_check/__init__.py +0 -0
- {django_health_check-4.0rc1 → django_health_check-4.0rc2}/health_check/base.py +0 -0
- {django_health_check-4.0rc1 → django_health_check-4.0rc2}/health_check/checks.py +0 -0
- {django_health_check-4.0rc1 → django_health_check-4.0rc2}/health_check/contrib/__init__.py +0 -0
- {django_health_check-4.0rc1 → django_health_check-4.0rc2}/health_check/contrib/celery.py +0 -0
- {django_health_check-4.0rc1 → django_health_check-4.0rc2}/health_check/contrib/kafka.py +0 -0
- {django_health_check-4.0rc1 → django_health_check-4.0rc2}/health_check/contrib/rabbitmq.py +0 -0
- {django_health_check-4.0rc1 → django_health_check-4.0rc2}/health_check/contrib/redis.py +0 -0
- {django_health_check-4.0rc1 → django_health_check-4.0rc2}/health_check/contrib/rss.py +0 -0
- {django_health_check-4.0rc1 → django_health_check-4.0rc2}/health_check/management/__init__.py +0 -0
- {django_health_check-4.0rc1 → django_health_check-4.0rc2}/health_check/management/commands/__init__.py +0 -0
- {django_health_check-4.0rc1 → django_health_check-4.0rc2}/health_check/management/commands/health_check.py +0 -0
- {django_health_check-4.0rc1 → django_health_check-4.0rc2}/health_check/templates/health_check/index.html +0 -0
- {django_health_check-4.0rc1 → django_health_check-4.0rc2}/health_check/views.py +0 -0
- {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.
|
|
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.
|
|
32
|
-
__version_tuple__ = version_tuple = (4, 0, '
|
|
31
|
+
__version__ = version = '4.0rc2'
|
|
32
|
+
__version_tuple__ = version_tuple = (4, 0, 'rc2')
|
|
33
33
|
|
|
34
|
-
__commit_id__ = commit_id = '
|
|
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
|
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{django_health_check-4.0rc1 → django_health_check-4.0rc2}/health_check/management/__init__.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|