Increase the interval between attempts, to avoid false warnings on slow machines.

This commit is contained in:
j2blake 2012-06-29 21:27:03 +00:00
parent 0a39165bbf
commit b26f595141

View file

@ -211,7 +211,7 @@ public class SolrSmokeTest implements ServletContextListener {
* </pre>
*/
private static class SolrHomePager {
private static final long SLEEP_INTERVAL = 10000; // 10 seconds
private static final long SLEEP_INTERVAL = 20000; // 20 seconds
private final URL solrUrl;
private final HttpClient httpClient = new HttpClient();