Skip to content

Commit

Permalink
Update RabbitMQ image to version 4-management
Browse files Browse the repository at this point in the history
Upgraded RabbitMQ from version 3-management to 4-management across tests and the Docker setup. This ensures compatibility with the latest features and improvements in RabbitMQ while maintaining consistency across environments.
  • Loading branch information
sfmskywalker committed Dec 14, 2024
1 parent 4793c6e commit cb6a7df
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion docker/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@
- COCKROACH_DATABASE=elsa

rabbitmq:
image: "rabbitmq:3-management"
image: "rabbitmq:4-management"
ports:
- "15672:15672"
- "5672:5672"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ public class Infrastructure : IAsyncLifetime
.Build();

public readonly RabbitMqContainer RabbitMqContainer = new RabbitMqBuilder()
.WithImage("rabbitmq:3-management")
.WithImage("rabbitmq:4-management")
.Build();

public Task InitializeAsync()
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ public class Infrastructure : IAsyncLifetime
.Build();

public readonly RabbitMqContainer RabbitMqContainer = new RabbitMqBuilder()
.WithImage("rabbitmq:3-management")
.WithImage("rabbitmq:4-management")
.Build();

public Task InitializeAsync()
Expand Down

0 comments on commit cb6a7df

Please sign in to comment.