Skip to content

Commit d107d32

Browse files
Pin the Pulsar version to 3.1.1 temporarily for the regression in Pulsar (#395)
### Motivation Pulsar 3.1.2 introduces a regression that makes two tests fail: - AuthPluginTest.testTlsDetectPulsarSslWithInvalidBroker (try #1) - AuthPluginTest.testTlsDetectHttpsWithInvalidBroker (try #1) ### Modifications Pin the Pulsar version to 3.1.1 until there is a new Pulsar release that fixes the regression.
1 parent d1dd08b commit d107d32

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

pulsar-test-service-start.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,12 +25,12 @@ SRC_DIR=$PWD
2525

2626
./pulsar-test-service-stop.sh
2727

28-
CONTAINER_ID=$(docker run -i --user $(id -u) -p 8080:8080 -p 6650:6650 -p 8443:8443 -p 6651:6651 --rm --detach apachepulsar/pulsar:latest sleep 3600)
28+
CONTAINER_ID=$(docker run -i --user $(id -u) -p 8080:8080 -p 6650:6650 -p 8443:8443 -p 6651:6651 --rm --detach apachepulsar/pulsar:3.1.1 sleep 3600)
2929
build-support/setup-test-service-container.sh $CONTAINER_ID start-test-service-inside-container.sh
3030

3131
docker cp $CONTAINER_ID:/pulsar/data/tokens/token.txt .test-token.txt
3232

33-
CONTAINER_ID=$(docker run -i --user $(id -u) -p 8081:8081 -p 6652:6652 -p 8444:8444 -p 6653:6653 --rm --detach apachepulsar/pulsar:latest sleep 3600)
33+
CONTAINER_ID=$(docker run -i --user $(id -u) -p 8081:8081 -p 6652:6652 -p 8444:8444 -p 6653:6653 --rm --detach apachepulsar/pulsar:3.1.1 sleep 3600)
3434
build-support/setup-test-service-container.sh $CONTAINER_ID start-mim-test-service-inside-container.sh
3535

3636
echo "-- Ready to start tests"

0 commit comments

Comments
 (0)