Fix: correct user_options assignment in Celery app

This commit is contained in:
2026-05-05 16:19:59 +02:00
parent 8ec391ccde
commit 25e6088355
+1 -1
View File
@@ -8,6 +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 = {} user_options = {}
app.autodiscover_tasks() app.autodiscover_tasks()