Skip to content

Commit 1035e7d

Browse files
committed
Use RabbitMQ 4.1 as default on CI
1 parent 58b9868 commit 1035e7d

File tree

3 files changed

+2
-3
lines changed

3 files changed

+2
-3
lines changed

.github/workflows/test-rabbitmq-alphas.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,6 @@ jobs:
1414
strategy:
1515
matrix:
1616
rabbitmq-image:
17-
- pivotalrabbitmq/rabbitmq:v4.0.x-otp27
1817
- pivotalrabbitmq/rabbitmq:v4.1.x-otp27
1918
- pivotalrabbitmq/rabbitmq:main-otp27
2019
name: Test against ${{ matrix.rabbitmq-image }}

README.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ Launch the broker:
7676
----
7777
docker run -it --rm --name rabbitmq -p 5552:5552 -p 5672:5672 \
7878
-e RABBITMQ_SERVER_ADDITIONAL_ERL_ARGS='-rabbitmq_stream advertised_host localhost' \
79-
rabbitmq:4.0
79+
rabbitmq:4.1
8080
----
8181

8282
Enable the stream plugin:

ci/start-broker.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
LOCAL_SCRIPT="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
44

5-
RABBITMQ_IMAGE=${RABBITMQ_IMAGE:-rabbitmq:4.0}
5+
RABBITMQ_IMAGE=${RABBITMQ_IMAGE:-rabbitmq:4.1}
66

77
wait_for_message() {
88
while ! docker logs "$1" | grep -q "$2";

0 commit comments

Comments
 (0)