From 25e6088355ed0d2f44adeb31a813d4c4b69aea38 Mon Sep 17 00:00:00 2001 From: Daniel Date: Tue, 5 May 2026 16:19:59 +0200 Subject: [PATCH] Fix: correct user_options assignment in Celery app --- proyecto/celery.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/proyecto/celery.py b/proyecto/celery.py index 7da552d..2113583 100644 --- a/proyecto/celery.py +++ b/proyecto/celery.py @@ -8,6 +8,6 @@ django.setup() app = Celery('proyecto') app.config_from_object('django.conf:settings', namespace="CELERY") -app.user_options = {} +user_options = {} app.autodiscover_tasks() \ No newline at end of file