From 2a573c189e9b269e362dcc87d89ac872038d195f Mon Sep 17 00:00:00 2001 From: Krish Moodbidri <krish94@uab.edu> Date: Thu, 5 May 2022 12:14:25 -0500 Subject: [PATCH] fixed celery start variable --- tasks.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tasks.py b/tasks.py index 5b724f3..72539c9 100644 --- a/tasks.py +++ b/tasks.py @@ -11,7 +11,7 @@ sys.path.append(vars.rabbitmq_agents_loc) import rc_util broker_url = vars.broker_url -celery = Celery('flask_user_reg', broker=broker_url) +celery = Celery(vars.celery_app, broker=broker_url) socketio = SocketIO(message_queue=vars.message_queue) timeout = 30 -- GitLab