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/15 21:11:31 UTC

[lucene-solr] branch reference_impl_dev updated: @832 Cleanup last commit.

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

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


The following commit(s) were added to refs/heads/reference_impl_dev by this push:
     new 9367518  @832 Cleanup last commit.
9367518 is described below

commit 9367518c8c22f0ff92ba7d2fbc7240dfc460c009
Author: markrmiller@gmail.com <ma...@gmail.com>
AuthorDate: Tue Sep 15 16:11:11 2020 -0500

    @832 Cleanup last commit.
---
 .../org/apache/solr/client/solrj/impl/CloudHttp2SolrClient.java    | 1 -
 .../java/org/apache/solr/client/solrj/impl/Http2SolrClient.java    | 7 -------
 2 files changed, 8 deletions(-)

diff --git a/solr/solrj/src/java/org/apache/solr/client/solrj/impl/CloudHttp2SolrClient.java b/solr/solrj/src/java/org/apache/solr/client/solrj/impl/CloudHttp2SolrClient.java
index 7999fa1..014b1bd 100644
--- a/solr/solrj/src/java/org/apache/solr/client/solrj/impl/CloudHttp2SolrClient.java
+++ b/solr/solrj/src/java/org/apache/solr/client/solrj/impl/CloudHttp2SolrClient.java
@@ -323,7 +323,6 @@ public class CloudHttp2SolrClient  extends BaseCloudSolrClient {
 
     @Override
     public void onSuccess(NamedList result) {
-      log.error("Add response to list");
       tsResponses.put(url, result);
     }
 
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 13ff759..b02cf0f 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
@@ -884,13 +884,6 @@ public class Http2SolrClient extends SolrClient {
       if (log.isDebugEnabled()) log.debug("After wait for outstanding requests {}", phaser);
     }
 
-//    public void waitForCompleteFinal() {
-//      if (log.isDebugEnabled()) log.debug("Before wait for complete final registered: {} arrived: {}", phaser.getRegisteredParties(), phaser.getArrivedParties());
-//      phaser.arriveAndDeregister();
-//
-//      if (log.isDebugEnabled()) log.debug("After wait for complete final registered: {} arrived: {}", phaser.getRegisteredParties(), phaser.getArrivedParties());
-//    }
-
     public void close() {
       phaser.forceTermination();
     }