Description
In FS the auto deletion check interval is 10s.
@Override public void onCheck() { queueMgr.removeEmptyDynamicQueues(); queueMgr.removePendingIncompatibleQueues(); } while (running) { try { synchronized (this) { reloadListener.onCheck(); } ... Thread.sleep(reloadIntervalMs); } /** Time to wait between checks of the allocation file */ public static final long ALLOC_RELOAD_INTERVAL_MS = 10 * 1000;