--- dao/DaoAdresseVedligehold/src/main/java/dk/daoas/adressevedligehold/tasks/Task.java 2016/03/28 21:28:47 2991 +++ dao/DaoAdresseVedligehold/src/main/java/dk/daoas/adressevedligehold/tasks/Task.java 2016/03/29 19:19:11 2992 @@ -72,6 +72,15 @@ logger.info("Done " + this.getDescription() + " " + timing.getElapsed() + "ms"); logMessages = TaskLogger.getInstance().getBuffer(); + + + // Make some delay between tasks to make sure that the VM settles and other contexts can perform their tasks as well + try { + Thread.sleep(60*1000); + } catch (InterruptedException e) { + e.printStackTrace(); + } + } public final String getLog() {