Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update RabbitMQ image to use 3.13.6 instead of 3.13.7 #5214

Closed
wants to merge 1 commit into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion backend/infrahub/testing/docker-compose.test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
# https://docs.infrahub.app/reference/configuration
services:
message-queue:
image: ${MESSAGE_QUEUE_DOCKER_IMAGE:-rabbitmq:3.13.7-management}
image: ${MESSAGE_QUEUE_DOCKER_IMAGE:-rabbitmq:3.13.6-management}
restart: unless-stopped
environment:
RABBITMQ_DEFAULT_USER: infrahub
Expand Down
2 changes: 1 addition & 1 deletion docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,7 @@ x-task-manager-config:

services:
message-queue:
image: ${MESSAGE_QUEUE_DOCKER_IMAGE:-rabbitmq:3.13.7-management}
image: ${MESSAGE_QUEUE_DOCKER_IMAGE:-rabbitmq:3.13.6-management}
restart: unless-stopped
environment:
RABBITMQ_DEFAULT_USER: *broker_username
Expand Down
2 changes: 1 addition & 1 deletion tasks/shared.py
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ class Namespace(str, Enum):
NEO4J_DOCKER_IMAGE = os.getenv("NEO4J_DOCKER_IMAGE", "neo4j:5.20.0-enterprise")
MESSAGE_QUEUE_DOCKER_IMAGE = os.getenv(
"MESSAGE_QUEUE_DOCKER_IMAGE",
"rabbitmq:3.13.7-management" if not INFRAHUB_USE_NATS else "nats:2.10.14-alpine",
"rabbitmq:3.13.6-management" if not INFRAHUB_USE_NATS else "nats:2.10.14-alpine",
)
CACHE_DOCKER_IMAGE = os.getenv(
"CACHE_DOCKER_IMAGE",
Expand Down
Loading