increased the delay to 2 minutes after startup before running client apps
tabs/spaces
This commit is contained in:
@ -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());
|
||||||
|
Reference in New Issue
Block a user