mirror of https://github.com/apache/lucene.git
SOLR-11106: TestLBHttpSolrClient.testReliablity takes 30 seconds because of the wrong server name
This commit is contained in:
parent
9e4557359f
commit
dd5be42e6c
|
@ -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
|
||||
|
|
|
@ -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);
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue