django-health-check 4.0rc1__py3-none-any.whl → 4.0rc2__py3-none-any.whl

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.
@@ -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>
@@ -1,8 +1,8 @@
1
1
  health_check/__init__.py,sha256=1ADgSDnupPOVTlVpJnjHm9nVGDcjhTjVMO_s9e-NGz0,438
2
- health_check/_version.py,sha256=aT6RyaQ7nKhRVnwCeTgHxtrd9T0i8UdsQNY0JFEplSg,717
2
+ health_check/_version.py,sha256=5Tm-AagZ3AntWyBPm3CeRvH_E0JBgK7S4_wE5vtPdCo,717
3
3
  health_check/base.py,sha256=QvErHU2-iQQOua1_nEfLsSuMQIF6Mn5hz68Y9a1OYQY,2932
4
4
  health_check/checks.py,sha256=xcBkDIF5u3GDRBILXxm6TQMYTPv2hQcrpnmKUFgUIDI,11362
5
- health_check/exceptions.py,sha256=Wd7P3F1ZuqJ8ioAIq4kHzmijsyUGL_PBatmqrQB-3-w,655
5
+ health_check/exceptions.py,sha256=qqxMFMLlYsmrAFoaGepHdzsMmllw3u9UnUtd0NKRgx8,525
6
6
  health_check/views.py,sha256=HCeEr-BcyfSZD9tS6LBXwvZejT2lSOV0OMLSn9e7hkc,10725
7
7
  health_check/contrib/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
8
8
  health_check/contrib/celery.py,sha256=WGqOo3InSooAEQRH1S8BY-NzC1mfRrDo9oTl9BKCxGI,2361
@@ -14,7 +14,7 @@ health_check/management/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG
14
14
  health_check/management/commands/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
15
15
  health_check/management/commands/health_check.py,sha256=29VIAGEulKzYkaQbFmw4kyYZR3U6k7IkBjj2qPHVN0A,1579
16
16
  health_check/templates/health_check/index.html,sha256=BqWM5l-p8CKoOfZn1hmLF_QTqImTJ9dH3lMrXJjNtT4,4523
17
- django_health_check-4.0rc1.dist-info/licenses/LICENSE,sha256=19Rs8FInCokFQuq03cab_KHwpeyF5pt-lTp7pfJX1iE,1101
18
- django_health_check-4.0rc1.dist-info/WHEEL,sha256=G2gURzTEtmeR8nrdXUJfNiB3VYVxigPQ-bEQujpNiNs,82
19
- django_health_check-4.0rc1.dist-info/METADATA,sha256=lvj2mktANDAIomKXyMw16sKqaf5cpCugsm-hXSYIioQ,3695
20
- django_health_check-4.0rc1.dist-info/RECORD,,
17
+ django_health_check-4.0rc2.dist-info/licenses/LICENSE,sha256=19Rs8FInCokFQuq03cab_KHwpeyF5pt-lTp7pfJX1iE,1101
18
+ django_health_check-4.0rc2.dist-info/WHEEL,sha256=G2gURzTEtmeR8nrdXUJfNiB3VYVxigPQ-bEQujpNiNs,82
19
+ django_health_check-4.0rc2.dist-info/METADATA,sha256=4DfkzJxtGbgQyESjb7Q2drGaJ4rR_95dW5GtMbx5A4M,3695
20
+ django_health_check-4.0rc2.dist-info/RECORD,,
health_check/_version.py CHANGED
@@ -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