0
0
Fork 0
mirror of https://github.com/healthchecks/healthchecks.git synced 2025-04-03 04:15:29 +00:00

Add a system check for settings.TIME_ZONE

cc: 
This commit is contained in:
Pēteris Caune 2025-01-30 14:27:14 +02:00
parent 8648a29a63
commit 41beaeadce
No known key found for this signature in database
GPG key ID: E28D7679E9A9EDE2

View file

@ -14,7 +14,7 @@ class ApiConfig(AppConfig):
name = "hc.api"
@register() # W001, W002, W005, E002
@register() # W001, W002, W005, E002, E003
def settings_check(
app_configs: Sequence[AppConfig] | None,
databases: Sequence[str] | None,
@ -61,6 +61,15 @@ def settings_check(
)
)
if settings.TIME_ZONE != "UTC":
items.append(
Error(
"settings.TIME_ZONE is not 'UTC'",
hint="Healthchecks is designed to use UTC internally, changing this setting will break things",
id="hc.api.E003",
)
)
return items