File tree 3 files changed +12
-6
lines changed
3 files changed +12
-6
lines changed Original file line number Diff line number Diff line change @@ -25,12 +25,12 @@ SRC_DIR=$PWD
25
25
26
26
./pulsar-test-service-stop.sh
27
27
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)
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)
29
29
build-support/setup-test-service-container.sh $CONTAINER_ID start-test-service-inside-container.sh
30
30
31
31
docker cp $CONTAINER_ID :/pulsar/data/tokens/token.txt .test-token.txt
32
32
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)
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)
34
34
build-support/setup-test-service-container.sh $CONTAINER_ID start-mim-test-service-inside-container.sh
35
35
36
36
echo " -- Ready to start tests"
Original file line number Diff line number Diff line change @@ -307,3 +307,8 @@ maxMessageSize=1024000
307
307
308
308
# Disable consistent hashing to fix flaky `KeySharedConsumerTest#testMultiTopics`.
309
309
subscriptionKeySharedUseConsistentHashing=false
310
+
311
+ # It's true by default since 2.11. After https://github.com/apache/pulsar/pull/21445, we must configure
312
+ # brokerClientAuthenticationPlugin and brokerClientAuthenticationParameters correctly when enabling topic
313
+ # level policies. Otherwise, no topic could be loaded.
314
+ topicLevelPoliciesEnabled=false
Original file line number Diff line number Diff line change 19
19
20
20
### --- General broker settings --- ###
21
21
22
- # Disable system topic
23
- systemTopicEnabled=false
24
- topicLevelPoliciesEnabled=false
25
-
26
22
# Zookeeper quorum connection string
27
23
zookeeperServers=
28
24
@@ -317,3 +313,8 @@ subscriptionKeySharedUseConsistentHashing=false
317
313
318
314
# Enable batch index ACK
319
315
acknowledgmentAtBatchIndexLevelEnabled=true
316
+
317
+ # It's true by default since 2.11. After https://github.com/apache/pulsar/pull/21445, we must configure
318
+ # brokerClientAuthenticationPlugin and brokerClientAuthenticationParameters correctly when enabling topic
319
+ # level policies. Otherwise, no topic could be loaded.
320
+ topicLevelPoliciesEnabled=false
You can’t perform that action at this time.
0 commit comments