increased the delay to 2 minutes after startup before running client apps

tabs/spaces
This commit is contained in:
jrandom
2004-04-18 02:50:54 +00:00
committed by zzz
parent 3295c18829
commit f0cd04ebc3

View File

@ -60,8 +60,8 @@ public class StartAcceptingClientsJob extends JobImpl {
class LoadClientAppsJob extends JobImpl { class LoadClientAppsJob extends JobImpl {
private final static Log _log = new Log(LoadClientAppsJob.class); private final static Log _log = new Log(LoadClientAppsJob.class);
/** wait a minute before starting up client apps */ /** wait 2 minutes before starting up client apps */
private final static long STARTUP_DELAY = 60*1000; private final static long STARTUP_DELAY = 2*60*1000;
public LoadClientAppsJob() { public LoadClientAppsJob() {
super(); super();
getTiming().setStartAfter(STARTUP_DELAY + Clock.getInstance().now()); getTiming().setStartAfter(STARTUP_DELAY + Clock.getInstance().now());