From 724d6179f08e868bb95b8fe0c518196389c86c36 Mon Sep 17 00:00:00 2001 From: Rich FitzJohn Date: Mon, 22 Jul 2024 10:14:52 +0100 Subject: [PATCH] Fix url for message broker --- src/montagu_deploy/__about__.py | 2 +- src/montagu_deploy/montagu_constellation.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/montagu_deploy/__about__.py b/src/montagu_deploy/__about__.py index 35252c2..a14a64a 100644 --- a/src/montagu_deploy/__about__.py +++ b/src/montagu_deploy/__about__.py @@ -1,4 +1,4 @@ # SPDX-FileCopyrightText: 2023-present Alex # # SPDX-License-Identifier: MIT -__version__ = "0.0.4" +__version__ = "0.0.5" diff --git a/src/montagu_deploy/montagu_constellation.py b/src/montagu_deploy/montagu_constellation.py index a593d13..7d767dd 100644 --- a/src/montagu_deploy/montagu_constellation.py +++ b/src/montagu_deploy/montagu_constellation.py @@ -75,7 +75,7 @@ def flower_container(cfg): name = cfg.containers["flower"] mq = cfg.containers["mq"] env = { - "CELERY_BROKEN_URL": f"redis://{mq}//", + "CELERY_BROKER_URL": f"redis://{mq}//", "CELERY_RESULT_BACKEND": f"redis://{mq}/0", "FLOWER_PORT": cfg.flower_port, }