From b26f595141bc67df4d9c4c71e8426d80462f7ca3 Mon Sep 17 00:00:00 2001 From: j2blake Date: Fri, 29 Jun 2012 21:27:03 +0000 Subject: [PATCH] Increase the interval between attempts, to avoid false warnings on slow machines. --- .../mannlib/vitro/webapp/servlet/setup/SolrSmokeTest.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/webapp/src/edu/cornell/mannlib/vitro/webapp/servlet/setup/SolrSmokeTest.java b/webapp/src/edu/cornell/mannlib/vitro/webapp/servlet/setup/SolrSmokeTest.java index f00165f81..f0fdeadc4 100644 --- a/webapp/src/edu/cornell/mannlib/vitro/webapp/servlet/setup/SolrSmokeTest.java +++ b/webapp/src/edu/cornell/mannlib/vitro/webapp/servlet/setup/SolrSmokeTest.java @@ -211,7 +211,7 @@ public class SolrSmokeTest implements ServletContextListener { * */ 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();