- Start webapps after console for faster startup

- Add delay in systray port checker to ensure console is up
- Move I2PRequestLog to net.i2p.jetty package
This commit is contained in:
zzz
2011-12-29 23:25:27 +00:00
parent 07162b56c8
commit be7623a462
4 changed files with 45 additions and 31 deletions

View File

@@ -77,6 +77,11 @@ public class UrlLauncher {
try {
test.close();
} catch (IOException ioe) {}
// Jetty 6 seems to start the Connector before the
// webapp is completely ready
try {
Thread.sleep(2*1000);
} catch (InterruptedException ie) {}
return true;
} catch (Exception e) {}
if (System.currentTimeMillis() > done)