SOLR-11106: TestLBHttpSolrClient.testReliablity takes 30 seconds because of the wrong server name

This commit is contained in:
Erick Erickson 2017-07-18 08:31:35 -07:00
parent 9e4557359f
commit dd5be42e6c
2 changed files with 4 additions and 1 deletions

View File

@ -94,6 +94,9 @@ Other Changes
* SOLR-11052: Remove unnecessary Long-to-Integer and back casts in ReplicationHandler.
(Ramsey Haddad via Christine Poerschke)
* SOLR-11106: TestLBHttpSolrClient.testReliablity takes 30 seconds because of the wrong server name
(Kensho Hirasawa via Erick Erickson)
================== 7.0.0 ==================
Versions of Major Components

View File

@ -220,7 +220,7 @@ public class TestLBHttpSolrClient extends SolrTestCaseJ4 {
// Start the killed server once again
solr[1].startJetty();
// Wait for the alive check to complete
waitForServer(30, client, 3, "solr1");
waitForServer(30, client, 3, solr[1].name);
} finally {
HttpClientUtil.close(myHttpClient);
}