From 69578f1dbaac3d6c2623a9c073276196cd58ab7e Mon Sep 17 00:00:00 2001 From: Daniel Date: Tue, 5 May 2026 14:00:36 +0200 Subject: [PATCH] Fix: add user_options attribute to Celery app --- proyecto/celery.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/proyecto/celery.py b/proyecto/celery.py index 6ec45c0..7da552d 100644 --- a/proyecto/celery.py +++ b/proyecto/celery.py @@ -8,4 +8,6 @@ django.setup() app = Celery('proyecto') app.config_from_object('django.conf:settings', namespace="CELERY") +app.user_options = {} + app.autodiscover_tasks() \ No newline at end of file