dsmiley commented on a change in pull request #708:
URL: https://github.com/apache/solr/pull/708#discussion_r825252089



##########
File path: 
solr/solrj/src/java/org/apache/solr/client/solrj/cloud/DelegatingClusterStateProvider.java
##########
@@ -124,4 +124,12 @@ public void close() throws IOException {
       delegate.close();
     }
   }
+
+  @Override
+  public String getQuorumHosts() {
+    if (delegate != null) {
+      return delegate.getQuorumHosts();
+    }
+    return null;

Review comment:
       From the diff it may not be apparent but the behavior here mimicks the 
other methods




-- 
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: issues-unsubscr...@solr.apache.org

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



---------------------------------------------------------------------
To unsubscribe, e-mail: issues-unsubscr...@solr.apache.org
For additional commands, e-mail: issues-h...@solr.apache.org

Reply via email to