You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@lucene.apache.org by no...@apache.org on 2020/08/13 03:38:24 UTC

[lucene-solr] branch master updated (a6515ca -> d517361)

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

noble pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/lucene-solr.git.


    from a6515ca  SOLR-14748: Correct condition on startup auth/ssl logging
     add d517361  SOLR-14680: Provide an implementation for the new SolrCluster API (#1730)

No new revisions were added by this update.

Summary of changes:
 .../org/apache/solr/cloud/TestLazySolrCluster.java |  97 +++++
 .../org/apache/solr/common/LazySolrCluster.java    | 446 +++++++++++++++++++++
 .../java/org/apache/solr/common/SimpleZkMap.java   | 139 +++++++
 .../java/org/apache/solr/common/cloud/Aliases.java |   8 +
 .../org/apache/solr/common/cloud/ClusterState.java |   4 +
 .../org/apache/solr/common/cloud/DocRouter.java    |  13 +-
 .../apache/solr/common/cloud/ZkStateReader.java    |  10 +-
 ...lectMapWriter.java => LinkedSimpleHashMap.java} |  20 +-
 .../org/apache/solr/common/util/NamedList.java     |  39 +-
 .../java/org/apache/solr/common/util/Utils.java    |   5 +-
 ...monTestInjection.java => WrappedSimpleMap.java} |  39 +-
 11 files changed, 785 insertions(+), 35 deletions(-)
 create mode 100644 solr/core/src/test/org/apache/solr/cloud/TestLazySolrCluster.java
 create mode 100644 solr/solrj/src/java/org/apache/solr/common/LazySolrCluster.java
 create mode 100644 solr/solrj/src/java/org/apache/solr/common/SimpleZkMap.java
 copy solr/solrj/src/java/org/apache/solr/common/util/{ReflectMapWriter.java => LinkedSimpleHashMap.java} (69%)
 copy solr/solrj/src/java/org/apache/solr/common/util/{CommonTestInjection.java => WrappedSimpleMap.java} (60%)