This is an automated email from the ASF dual-hosted git repository.

mattisonchao pushed a commit to branch branch-2.9
in repository https://gitbox.apache.org/repos/asf/pulsar.git


The following commit(s) were added to refs/heads/branch-2.9 by this push:
     new dc9968a58a8 [branch-2.9] Fix cherry-pick issues. (#16346)
dc9968a58a8 is described below

commit dc9968a58a8c6140525fec31777e4c1a0de443bb
Author: Qiang Zhao <[email protected]>
AuthorDate: Sat Jul 2 17:12:17 2022 +0800

    [branch-2.9] Fix cherry-pick issues. (#16346)
---
 .../zookeeper/ZkIsolatedBookieEnsemblePlacementPolicyTest.java    | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git 
a/pulsar-zookeeper-utils/src/test/java/org/apache/pulsar/zookeeper/ZkIsolatedBookieEnsemblePlacementPolicyTest.java
 
b/pulsar-zookeeper-utils/src/test/java/org/apache/pulsar/zookeeper/ZkIsolatedBookieEnsemblePlacementPolicyTest.java
index 9269117361f..04b3b67b35b 100644
--- 
a/pulsar-zookeeper-utils/src/test/java/org/apache/pulsar/zookeeper/ZkIsolatedBookieEnsemblePlacementPolicyTest.java
+++ 
b/pulsar-zookeeper-utils/src/test/java/org/apache/pulsar/zookeeper/ZkIsolatedBookieEnsemblePlacementPolicyTest.java
@@ -314,11 +314,11 @@ public class ZkIsolatedBookieEnsemblePlacementPolicyTest {
         // when we set strictBookieAffinityEnabled=true and some namespace not 
set ISOLATION_BOOKIE_GROUPS there will set "" by default.
         Map<String, Object> placementPolicyProperties1 = new HashMap<>();
         placementPolicyProperties1.put(
-                IsolatedBookieEnsemblePlacementPolicy.ISOLATION_BOOKIE_GROUPS, 
"");
+                
ZkIsolatedBookieEnsemblePlacementPolicy.ISOLATION_BOOKIE_GROUPS, "");
         placementPolicyProperties1.put(
-                
IsolatedBookieEnsemblePlacementPolicy.SECONDARY_ISOLATION_BOOKIE_GROUPS, "");
+                
ZkIsolatedBookieEnsemblePlacementPolicy.SECONDARY_ISOLATION_BOOKIE_GROUPS, "");
         EnsemblePlacementPolicyConfig policyConfig = new 
EnsemblePlacementPolicyConfig(
-                IsolatedBookieEnsemblePlacementPolicy.class,
+                ZkIsolatedBookieEnsemblePlacementPolicy.class,
                 placementPolicyProperties1
         );
         Map<String, byte[]> customMetadata1 = new HashMap<>();
@@ -331,7 +331,7 @@ public class ZkIsolatedBookieEnsemblePlacementPolicyTest {
         // when ISOLATION_BOOKIE_GROUPS miss.
         Map<String, Object> placementPolicyProperties2 = new HashMap<>();
         EnsemblePlacementPolicyConfig policyConfig2 = new 
EnsemblePlacementPolicyConfig(
-                IsolatedBookieEnsemblePlacementPolicy.class,
+                ZkIsolatedBookieEnsemblePlacementPolicy.class,
                 placementPolicyProperties2
         );
         Map<String, byte[]> customMetadata2 = new HashMap<>();

Reply via email to