You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@pulsar.apache.org by mm...@apache.org on 2021/11/11 23:02:39 UTC

[pulsar] branch master updated: [issue-12764] Revert "BookkeeperClientFactory should pass in the ZK instance (#12192)" (#12765)

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

mmerli pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/pulsar.git


The following commit(s) were added to refs/heads/master by this push:
     new b6727df  [issue-12764] Revert "BookkeeperClientFactory should pass in the ZK instance (#12192)" (#12765)
b6727df is described below

commit b6727df2dcab9be7b961c06aeb207c47b8dd2b14
Author: Eron Wright <ew...@streamnative.io>
AuthorDate: Thu Nov 11 15:01:37 2021 -0800

    [issue-12764] Revert "BookkeeperClientFactory should pass in the ZK instance (#12192)" (#12765)
    
    This reverts commit 33580ca6c28f612d3eeb250341a0cb8883961afc.
---
 .../main/java/org/apache/pulsar/broker/BookKeeperClientFactoryImpl.java  | 1 -
 1 file changed, 1 deletion(-)

diff --git a/pulsar-broker/src/main/java/org/apache/pulsar/broker/BookKeeperClientFactoryImpl.java b/pulsar-broker/src/main/java/org/apache/pulsar/broker/BookKeeperClientFactoryImpl.java
index 996bf22..9a09deb 100644
--- a/pulsar-broker/src/main/java/org/apache/pulsar/broker/BookKeeperClientFactoryImpl.java
+++ b/pulsar-broker/src/main/java/org/apache/pulsar/broker/BookKeeperClientFactoryImpl.java
@@ -81,7 +81,6 @@ public class BookKeeperClientFactoryImpl implements BookKeeperClientFactory {
         try {
             return BookKeeper.forConfig(bkConf)
                     .allocator(PulsarByteBufAllocator.DEFAULT)
-                    .setZookeeper(zkClient)
                     .eventLoopGroup(eventLoopGroup)
                     .statsLogger(statsLogger)
                     .build();