mirror of https://github.com/apache/lucene.git
increase jetty wait time more... still getting failure on my fast box
git-svn-id: https://svn.apache.org/repos/asf/lucene/solr/trunk@820101 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
7b1026a279
commit
b98ef236e2
|
@ -111,7 +111,7 @@ public class JettySolrRunner
|
|||
}
|
||||
|
||||
/** Waits until a ping query to the solr server succeeds,
|
||||
* retrying every 200 milliseconds for a total of 20 seconds.
|
||||
* retrying every 200 milliseconds up to 2 minutes.
|
||||
*/
|
||||
public void waitForSolr(String context) throws Exception
|
||||
{
|
||||
|
@ -122,7 +122,7 @@ public class JettySolrRunner
|
|||
|
||||
Exception ex = null;
|
||||
// Wait for a total of 20 seconds: 100 tries, 200 milliseconds each
|
||||
for (int i=0; i<100; i++) {
|
||||
for (int i=0; i<600; i++) {
|
||||
try {
|
||||
InputStream stream = url.openStream();
|
||||
stream.close();
|
||||
|
|
Loading…
Reference in New Issue