mirror of https://github.com/apache/lucene.git
Fix javadocs for ClusterState.getCollectionOrNull
This commit is contained in:
parent
162636bf05
commit
66cd070d7a
|
@ -180,9 +180,9 @@ public class ClusterState implements JSONWriter.Writable {
|
||||||
* if such a collection exists. Returns null otherwise.
|
* if such a collection exists. Returns null otherwise.
|
||||||
*
|
*
|
||||||
* Implementation note: This method resolves the collection reference by calling
|
* Implementation note: This method resolves the collection reference by calling
|
||||||
* {@link CollectionRef#get()} which can make a call to ZooKeeper. This is necessary
|
* {@link CollectionRef#get()} which may make a call to ZooKeeper. This is necessary
|
||||||
* because the semantics of how collection list is loaded have changed in SOLR-6629.
|
* because the semantics of how collection list is loaded have changed in SOLR-6629.
|
||||||
* Please javadocs in {@link ZkStateReader#refreshCollectionList(Watcher)}
|
* Please see javadocs in {@link ZkStateReader#refreshCollectionList(Watcher)}
|
||||||
*/
|
*/
|
||||||
public DocCollection getCollectionOrNull(String collectionName) {
|
public DocCollection getCollectionOrNull(String collectionName) {
|
||||||
CollectionRef ref = collectionStates.get(collectionName);
|
CollectionRef ref = collectionStates.get(collectionName);
|
||||||
|
|
Loading…
Reference in New Issue