Fix: add user_options attribute to Celery app

This commit is contained in:
2026-05-05 14:00:36 +02:00
parent 3eb81b343c
commit 69578f1dba
+2
View File
@@ -8,4 +8,6 @@ django.setup()
app = Celery('proyecto') app = Celery('proyecto')
app.config_from_object('django.conf:settings', namespace="CELERY") app.config_from_object('django.conf:settings', namespace="CELERY")
app.user_options = {}
app.autodiscover_tasks() app.autodiscover_tasks()