Set correct celery broker URL

This commit is contained in:
Sonny Bakker 2023-06-28 19:55:19 +02:00
parent b91f5c8939
commit 70a1ae306b

View file

@ -251,7 +251,9 @@ SWAGGER_SETTINGS = {
# Celery # Celery
# https://docs.celeryproject.org/en/stable/userguide/configuration.html # https://docs.celeryproject.org/en/stable/userguide/configuration.html
# Note that celery settings are prefix with CELERY. See src/newsreader/celery.py.
CELERY_WORKER_HIJACK_ROOT_LOGGER = False CELERY_WORKER_HIJACK_ROOT_LOGGER = False
CELERY_BROKER_URL = "amqp://guest@rabbitmq:5672"
REGISTRATION_OPEN = True REGISTRATION_OPEN = True
REGISTRATION_AUTO_LOGIN = True REGISTRATION_AUTO_LOGIN = True