ivankelly commented on a change in pull request #1059: Issue 1014: Rename
"global zookeeper" to "configuration-store"(change in code, conf and cli)
URL: https://github.com/apache/incubator-pulsar/pull/1059#discussion_r173123830
##########
File path:
pulsar-proxy/src/main/java/org/apache/pulsar/proxy/server/ProxyConfiguration.java
##########
@@ -133,14 +137,24 @@ public void setZookeeperServers(String zookeeperServers)
{
this.zookeeperServers = zookeeperServers;
}
+ @Deprecated
public String getGlobalZookeeperServers() {
return globalZookeeperServers;
}
+ @Deprecated
public void setGlobalZookeeperServers(String globalZookeeperServers) {
this.globalZookeeperServers = globalZookeeperServers;
}
+ public String getConfigurationStoreServers() {
+ return null == configurationStoreServers? getGlobalZookeeperServers()
: configurationStoreServers;
Review comment:
space before ?
----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on GitHub and use the
URL above to go to the specific comment.
For queries about this service, please contact Infrastructure at:
[email protected]
With regards,
Apache Git Services