Fix celery worker initialization by setting up Django before Celery and fixing import name

This commit is contained in:
2026-05-05 13:09:54 +02:00
parent ce5aac0e89
commit 3eb81b343c
3 changed files with 14 additions and 5 deletions
+2 -2
View File
@@ -1,2 +1,2 @@
from .celery import app as celery_app
__all__ = ('celery_app',)
from .celery import app as celery
__all__ = ('celery',)