fix(celery): remove stale legacy task module references
Some checks failed
Some checks failed
This commit is contained in:
@@ -53,13 +53,9 @@ if SENTRY_DSN:
|
||||
# - subscription: MIGRATED to billing module (kept for capture_capacity_snapshot -> monitoring)
|
||||
# - marketplace, letzshop, export: MIGRATED to marketplace module
|
||||
# - code_quality, test_runner: Will migrate to dev-tools module
|
||||
LEGACY_TASK_MODULES = [
|
||||
# "app.tasks.celery_tasks.marketplace", # MIGRATED to marketplace module
|
||||
# "app.tasks.celery_tasks.letzshop", # MIGRATED to marketplace module
|
||||
"app.tasks.celery_tasks.subscription", # Kept for capture_capacity_snapshot only
|
||||
# "app.tasks.celery_tasks.export", # MIGRATED to marketplace module
|
||||
"app.tasks.celery_tasks.code_quality",
|
||||
"app.tasks.celery_tasks.test_runner",
|
||||
LEGACY_TASK_MODULES: list[str] = [
|
||||
# All legacy tasks have been migrated to their respective modules.
|
||||
# Task discovery now happens via app.modules.tasks.discover_module_tasks()
|
||||
]
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user