Add worker delivery acceptance probe

This commit is contained in:
2026-08-03 00:20:51 +02:00
parent 435b924fd9
commit 21c1fa49b6
4 changed files with 113 additions and 2 deletions
+6
View File
@@ -115,6 +115,12 @@ class Settings(BaseSettings):
migration_track: str = Field(default="release", alias="GOVOPLAN_MIGRATION_TRACK")
redis_url: str = Field(default="redis://redis:6379/0", alias="REDIS_URL")
celery_enabled: bool = Field(default=False, alias="CELERY_ENABLED")
celery_visibility_timeout_seconds: int = Field(
default=3600,
ge=30,
le=7 * 24 * 60 * 60,
alias="CELERY_VISIBILITY_TIMEOUT_SECONDS",
)
s3_endpoint_url: str = Field(default="http://garage:3900", alias="S3_ENDPOINT_URL")
s3_region: str = Field(default="garage", alias="S3_REGION")