From bd4d5c00d9d9a3cce776a38839836db4e44f36b7 Mon Sep 17 00:00:00 2001 From: Ole Valente Date: Fri, 10 Jul 2026 23:54:46 +0200 Subject: [PATCH] Fix celery autodiscover: use ['app'] to find app.tasks.* modules --- backend/app/tasks/celery_app.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/backend/app/tasks/celery_app.py b/backend/app/tasks/celery_app.py index ebc7f9b..0b0696c 100644 --- a/backend/app/tasks/celery_app.py +++ b/backend/app/tasks/celery_app.py @@ -18,4 +18,4 @@ celery_app.conf.update( worker_prefetch_multiplier=1, ) -celery_app.autodiscover_tasks(["app.tasks"]) +celery_app.autodiscover_tasks(["app"])