added brief sleep after server startup to see if this helps cut down on test failures

This commit is contained in:
Thomas Risberg
2011-07-18 20:26:34 -04:00
parent 0198b67141
commit df2870a878

View File

@@ -106,6 +106,10 @@ public class LocalTestServer {
};
neoServer.start();
neoServer.getWebServer().getJetty().setStopAtShutdown(true);
// let the server get fully started
try {
Thread.sleep(500L);
} catch (InterruptedException e) {}
}
public void stop() {