You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@lucene.apache.org by ma...@apache.org on 2020/09/04 11:16:11 UTC

[lucene-solr] 05/13: @724 Don't wait for async requests to complete automatically in close.

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

markrmiller pushed a commit to branch reference_impl
in repository https://gitbox.apache.org/repos/asf/lucene-solr.git

commit 4ca005296a691ac902449fc6c21f1b58d3290fc3
Author: markrmiller@gmail.com <ma...@gmail.com>
AuthorDate: Thu Sep 3 12:33:16 2020 -0500

    @724 Don't wait for async requests to complete automatically in close.
---
 .../src/java/org/apache/solr/client/solrj/impl/Http2SolrClient.java      | 1 -
 1 file changed, 1 deletion(-)

diff --git a/solr/solrj/src/java/org/apache/solr/client/solrj/impl/Http2SolrClient.java b/solr/solrj/src/java/org/apache/solr/client/solrj/impl/Http2SolrClient.java
index ade6175..b827705 100644
--- a/solr/solrj/src/java/org/apache/solr/client/solrj/impl/Http2SolrClient.java
+++ b/solr/solrj/src/java/org/apache/solr/client/solrj/impl/Http2SolrClient.java
@@ -252,7 +252,6 @@ public class Http2SolrClient extends SolrClient {
 
   public void close() {
    // closeTracker.close();
-    asyncTracker.waitForComplete();
     if (closeClient) {
       try {
         httpClient.stop();