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:
Christine Poerschke 2019-03-07 20:17:31 +00:00
parent 1e09268e78
commit 683aa3d3e9
2 changed files with 4 additions and 1 deletions

View File

@ -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

View File

@ -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);
}