increased the sleep after server startup to see if this helps cut down on test failures

This commit is contained in:
Thomas Risberg
2011-07-19 09:26:43 -04:00
parent 718d1b3f2e
commit 42962e025b

View File

@@ -108,7 +108,7 @@ public class LocalTestServer {
neoServer.getWebServer().getJetty().setStopAtShutdown(true);
// let the server get fully started
try {
Thread.sleep(500L);
Thread.sleep(1000L);
} catch (InterruptedException e) {}
}