This is an automated email from the ASF dual-hosted git repository.
jdyer pushed a change to branch main
in repository https://gitbox.apache.org/repos/asf/solr.git
from 5c399dd526e SOLR-17153: CloudSolrClient should not throw "Collection
not found" with an out-dated ClusterState (#2363)
add cc0822831ef SOLR-17211: HttpJdkSolrClient Support Async requests
(#2374)
No new revisions were added by this update.
Summary of changes:
solr/CHANGES.txt | 2 +
.../modules/deployment-guide/pages/solrj.adoc | 2 +-
.../solr/client/solrj/impl/Http2SolrClient.java | 3 +-
.../solr/client/solrj/impl/HttpJdkSolrClient.java | 153 ++++++++++++++++-----
.../solr/client/solrj/impl/HttpSolrClientBase.java | 16 +++
.../solr/client/solrj/util/AsyncListener.java | 8 +-
.../apache/solr/client/solrj/util/Cancellable.java | 9 ++
.../solr/client/solrj/impl/DebugAsyncListener.java | 84 +++++++++++
.../solr/client/solrj/impl/DebugServlet.java | 18 ++-
.../client/solrj/impl/Http2SolrClientTest.java | 15 ++
.../client/solrj/impl/HttpJdkSolrClientTest.java | 74 +++++++++-
.../client/solrj/impl/HttpSolrClientTestBase.java | 122 +++++++++++++++-
12 files changed, 459 insertions(+), 47 deletions(-)
create mode 100644
solr/solrj/src/test/org/apache/solr/client/solrj/impl/DebugAsyncListener.java