mirror of https://github.com/apache/lucene.git
SOLR-13254: Correct message that is logged in solrj's ConnectionManager when an exception occurred while reconnecting to ZooKeeper. (hu xiaodong via Christine Poerschke)
This commit is contained in:
parent
1e09268e78
commit
683aa3d3e9
|
@ -101,6 +101,9 @@ Bug Fixes
|
|||
|
||||
* SOLR-13295: Reproducible failure in TestDistributedGrouping (Erick Erickson)
|
||||
|
||||
* SOLR-13254: Correct message that is logged in solrj's ConnectionManager when an exception
|
||||
occurred while reconnecting to ZooKeeper. (hu xiaodong via Christine Poerschke)
|
||||
|
||||
Improvements
|
||||
----------------------
|
||||
* SOLR-12999: Index replication could delete segments before downloading segments from master if there is not enough
|
||||
|
|
|
@ -183,7 +183,7 @@ public class ConnectionManager implements Watcher {
|
|||
|
||||
} catch (Exception e) {
|
||||
SolrException.log(log, "", e);
|
||||
log.info("Could not connect due to error, sleeping for 5s and trying agian");
|
||||
log.info("Could not connect due to error, sleeping for 1s and trying again");
|
||||
waitSleep(1000);
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue