Skip to content

Commit

Permalink
Fix url for message broker
Browse files Browse the repository at this point in the history
  • Loading branch information
richfitz committed Jul 22, 2024
1 parent 737a555 commit 724d617
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/montagu_deploy/__about__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# SPDX-FileCopyrightText: 2023-present Alex <[email protected]>
#
# SPDX-License-Identifier: MIT
__version__ = "0.0.4"
__version__ = "0.0.5"
2 changes: 1 addition & 1 deletion src/montagu_deploy/montagu_constellation.py
Original file line number Diff line number Diff line change
Expand Up @@ -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,
}
Expand Down

0 comments on commit 724d617

Please sign in to comment.