mirror of https://github.com/apache/lucene.git
SOLR-14684: CloudExitableDirectoryReaderTest failing about 25% of the time (#1724)
This commit is contained in:
parent
bbd21aa422
commit
2b2b9e71d3
|
@ -213,7 +213,8 @@ public abstract class LBSolrClient extends SolrClient {
|
|||
if (previousEx == null) {
|
||||
suffix = ":" + zombieServers.keySet();
|
||||
}
|
||||
if (isTimeExceeded(timeAllowedNano, timeOutTime)) {
|
||||
// Skipping check time exceeded for the first request
|
||||
if (previousEx != null && isTimeExceeded(timeAllowedNano, timeOutTime)) {
|
||||
throw new SolrServerException("Time allowed to handle this request exceeded"+suffix, previousEx);
|
||||
}
|
||||
if (serverStr == null) {
|
||||
|
|
Loading…
Reference in New Issue