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

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


The following commit(s) were added to refs/heads/master by this push:
     new 9921613  Issue #1335: LocalBookKeeper doesn't work with metadata 
service uri
9921613 is described below

commit 9921613829dba70a2903ee19ddfc4dc757fb39ab
Author: Sijie Guo <si...@apache.org>
AuthorDate: Thu Apr 12 00:14:37 2018 -0700

    Issue #1335: LocalBookKeeper doesn't work with metadata service uri
    
    Descriptions of the changes in this PR:
    
    *Problem*
    
    `"zk+hierarchical://localhost:2181/ledgers"` is invalid because `"` is an 
invalid character.
    
    *Solution*
    
    Fix the invalid settings in `bk_server.conf`
    
    Author: Sijie Guo <si...@apache.org>
    
    Reviewers: Enrico Olivelli <eolive...@gmail.com>, Jia Zhai <None>
    
    This closes #1337 from sijie/fix_invalid_settings, closes #1335
---
 conf/bk_server.conf | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/conf/bk_server.conf b/conf/bk_server.conf
index 96ddcbc..946e6af 100755
--- a/conf/bk_server.conf
+++ b/conf/bk_server.conf
@@ -635,7 +635,7 @@ ledgerDirectories=/tmp/bk-data
 #############################################################################
 
 # metadata service uri that bookkeeper is used for loading corresponding 
metadata driver and resolving its metadata service location
-metadataServiceUri="zk+hierarchical://localhost:2181/ledgers"
+metadataServiceUri=zk+hierarchical://localhost:2181/ledgers
 
 # @Deprecated - `ledgerManagerFactoryClass` is deprecated in favor of using 
`metadataServiceUri`
 # Ledger Manager Class
@@ -652,7 +652,7 @@ 
metadataServiceUri="zk+hierarchical://localhost:2181/ledgers"
 # allowShadedLedgerManagerFactoryClass=false
 
 # the shaded ledger manager factory prefix. this is used when 
`allowShadedLedgerManagerFactoryClass` is set to true.
-# shadedLedgerManagerFactoryClassPrefix="dlshade."
+# shadedLedgerManagerFactoryClassPrefix=dlshade.
 
 #############################################################################
 ## ZooKeeper Metadata Service settings

-- 
To stop receiving notification emails like this one, please contact
si...@apache.org.

Reply via email to