mirror of
https://github.com/healthchecks/healthchecks.git
synced 2025-04-03 04:15:29 +00:00
parent
8648a29a63
commit
41beaeadce
1 changed files with 10 additions and 1 deletions
|
@ -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
|
||||
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue