List of usage examples for org.apache.solr.common SolrException getRootCause
public static Throwable getRootCause(Throwable t)
From source file:com.ngdata.hbaseindexer.indexer.FusionPipelineClient.java
License:Apache License
private static boolean shouldRetry(Exception exc) { Throwable rootCause = SolrException.getRootCause(exc); return (rootCause instanceof ConnectException || rootCause instanceof SocketException); }