Files
prop-data-guard/backend/app/tasks/worker.py
T
2026-04-22 17:07:33 +08:00

21 lines
475 B
Python

from celery import Celery
from app.core.config import settings
celery_app = Celery(
"prop_data_guard",
broker=settings.REDIS_URL,
backend=settings.REDIS_URL,
include=["app.tasks.classification_tasks"],
)
celery_app.conf.update(
task_serializer="json",
accept_content=["json"],
result_serializer="json",
timezone="Asia/Shanghai",
enable_utc=True,
task_track_started=True,
task_time_limit=3600,
worker_prefetch_multiplier=1,
)