From dd6003b7e80f7534938430b1cce1e32091084d09 Mon Sep 17 00:00:00 2001 From: Zixuan Liu Date: Tue, 3 Jun 2025 12:04:19 +0800 Subject: [PATCH] [improve][test] Default-enable bk http in test setup Signed-off-by: Zixuan Liu --- .../pulsar/tests/integration/topologies/PulsarCluster.java | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tests/integration/src/test/java/org/apache/pulsar/tests/integration/topologies/PulsarCluster.java b/tests/integration/src/test/java/org/apache/pulsar/tests/integration/topologies/PulsarCluster.java index 6e3c4530f5d0e..6a928500aebbb 100644 --- a/tests/integration/src/test/java/org/apache/pulsar/tests/integration/topologies/PulsarCluster.java +++ b/tests/integration/src/test/java/org/apache/pulsar/tests/integration/topologies/PulsarCluster.java @@ -210,7 +210,8 @@ private PulsarCluster(PulsarClusterSpec spec, Network network, CSContainer csCon .withEnv("PULSAR_PREFIX_diskUsageLwmThreshold", "0.97") .withEnv("nettyMaxFrameSizeBytes", String.valueOf(spec.maxMessageSize)) .withEnv("ledgerDirectories", "data/bookkeeper/" + name + "/ledgers") - .withEnv("journalDirectory", "data/bookkeeper/" + name + "/journal"); + .withEnv("journalDirectory", "data/bookkeeper/" + name + "/journal") + .withEnv("httpServerEnabled", "true"); if (spec.bookkeeperEnvs != null) { bookieContainer.withEnv(spec.bookkeeperEnvs); }