From 8a363498f55946ad82f2257ec1c230cedf53eb37 Mon Sep 17 00:00:00 2001 From: Anatoly Date: Thu, 17 Oct 2019 14:28:39 +0300 Subject: [PATCH] change broker url --- project/settings/base.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/project/settings/base.py b/project/settings/base.py index f89eff8d..040cbbad 100644 --- a/project/settings/base.py +++ b/project/settings/base.py @@ -320,7 +320,7 @@ REDOC_SETTINGS = { # RabbitMQ # BROKER_URL = 'amqp://rabbitmq:5672' # Redis -BROKER_URL = 'redis://base:6379/1' +BROKER_URL = 'redis://localhost:6379/1' CELERY_RESULT_BACKEND = BROKER_URL CELERY_BROKER_URL = BROKER_URL CELERY_ACCEPT_CONTENT = ['application/json']