tflobbe commented on code in PR #1047:
URL: https://github.com/apache/solr/pull/1047#discussion_r983938498


##########
solr/solrj/src/java/org/apache/solr/client/solrj/impl/Http2SolrClient.java:
##########
@@ -477,6 +479,13 @@ public NamedList<Object> request(SolrRequest<?> 
solrRequest, String collection)
             "IOException occured when talking to server at: " + getBaseURL(), 
cause);
       }
       throw new SolrServerException(cause.getMessage(), cause);
+    } catch (SolrServerException sse) {
+      abortCause = sse;
+      throw sse;
+    } finally {
+      if (abortCause != null) {

Review Comment:
   Yes. it doesn't. I reported it too



-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: issues-unsubscr...@solr.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


---------------------------------------------------------------------
To unsubscribe, e-mail: issues-unsubscr...@solr.apache.org
For additional commands, e-mail: issues-h...@solr.apache.org

Reply via email to