Revert "chore: improve validation and handler of logging timezone with TimezoneName" (#10077)

This commit is contained in:
crazywoola
2024-10-30 22:06:10 +08:00
committed by GitHub
parent a69513c044
commit 0a3d51e9cf
2 changed files with 12 additions and 10 deletions

View File

@@ -10,7 +10,6 @@ from pydantic import (
PositiveInt,
computed_field,
)
from pydantic_extra_types.timezone_name import TimeZoneName
from pydantic_settings import BaseSettings
from configs.feature.hosted_service import HostedServiceConfig
@@ -340,9 +339,8 @@ class LoggingConfig(BaseSettings):
default=None,
)
LOG_TZ: Optional[TimeZoneName] = Field(
description="Timezone for log timestamps. Allowed timezone values can be referred to IANA Time Zone Database,"
" e.g., 'America/New_York')",
LOG_TZ: Optional[str] = Field(
description="Timezone for log timestamps (e.g., 'America/New_York')",
default=None,
)