You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@pulsar.apache.org by GitBox <gi...@apache.org> on 2022/03/17 08:37:43 UTC

[GitHub] [pulsar] aloyszhang commented on a change in pull request #14686: Fix error setMetadataServiceUri

aloyszhang commented on a change in pull request #14686:
URL: https://github.com/apache/pulsar/pull/14686#discussion_r828871275



##########
File path: pulsar-metadata/src/main/java/org/apache/pulsar/metadata/bookkeeper/AbstractMetadataDriver.java
##########
@@ -98,7 +98,9 @@ void createMetadataStore() throws MetadataException {
 
             String url;
             try {
-                url = conf.getMetadataServiceUri().replaceFirst(METADATA_STORE_SCHEME + ":", "");
+                url = conf.getMetadataServiceUri()
+                        .replaceFirst(METADATA_STORE_SCHEME + ":", "")
+                        .replace(";", ",");

Review comment:
       > Set metadataServiceUri in bookkeeper.conf with comma, it will also cause this issue, Because of BK side
   
   This is a known issue https://github.com/apache/bookkeeper/issues/2900




-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscribe@pulsar.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org