Browse Source

modified redis address

tomoya 2 years ago
parent
commit
77ac305168
1 changed files with 2 additions and 2 deletions
  1. 2 2
      backend/app/app/core/celery_app.py

+ 2 - 2
backend/app/app/core/celery_app.py

@@ -1,8 +1,8 @@
 from celery import Celery
 
-celery_app = Celery("worker", broker="amqp://guest@queue//")
+celery_app = Celery("worker", broker="redis://172.104.93.163:16379/video/")
 
 
 
 celery_app.conf.task_routes = {"app.worker.test_celery": "main-queue", 
-                                  "app.worker.make_video": "main-queue"}
+                               "app.worker.make_video": "main-queue"}