cpoerschke commented on a change in pull request #99:
URL: https://github.com/apache/solr/pull/99#discussion_r623802940
##########
File path: solr/core/src/java/org/apache/solr/handler/IndexFetcher.java
##########
@@ -677,12 +677,12 @@ IndexFetchResult fetchLatestIndex(boolean
forceReplication, boolean forceCoreRel
markReplicationStop();
return successfulInstall ? IndexFetchResult.INDEX_FETCH_SUCCESS :
IndexFetchResult.INDEX_FETCH_FAILURE;
} catch (ReplicationHandlerException e) {
- log.error("User aborted Replication");
+ log.error("User aborted Replication", e);
return new
IndexFetchResult(IndexFetchResult.FAILED_BY_EXCEPTION_MESSAGE, false, e);
} catch (SolrException e) {
throw e;
} catch (InterruptedException e) {
- throw new InterruptedException("Index fetch interrupted");
+ throw new InterruptedException("Index fetch interrupted", e);
Review comment:
Locally this does not compile for me on Java 11, maybe instead this?
```suggestion
throw (InterruptedException)(new InterruptedException("Index fetch
interrupted").initCause(e));
```
--
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.
For queries about this service, please contact Infrastructure at:
[email protected]
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]