update celery beat scheduler time to env (#6352)

This commit is contained in:
Jyong
2024-07-17 02:31:30 +08:00
committed by GitHub
parent 06fcc0c650
commit 7c397f5722
3 changed files with 16 additions and 3 deletions

View File

@@ -23,6 +23,7 @@ class SecurityConfig(BaseSettings):
default=24,
)
class AppExecutionConfig(BaseSettings):
"""
App Execution configs
@@ -435,6 +436,13 @@ class ImageFormatConfig(BaseSettings):
)
class CeleryBeatConfig(BaseSettings):
CELERY_BEAT_SCHEDULER_TIME: int = Field(
description='the time of the celery scheduler, default to 1 day',
default=1,
)
class FeatureConfig(
# place the configs in alphabet order
AppExecutionConfig,
@@ -462,5 +470,6 @@ class FeatureConfig(
# hosted services config
HostedServiceConfig,
CeleryBeatConfig,
):
pass