Sleep for 5s before cleaning up temp path, in case this improves reliability on Windows.

This commit is contained in:
CalDescent 2021-10-09 13:03:32 +01:00
parent 3fb7df18a0
commit 9f488b7b77

View File

@ -296,6 +296,7 @@ public class Bootstrap {
// Cleanup
LOGGER.info("Cleaning up...");
Thread.sleep(5000L);
this.deleteAllTempDirectories();
}
}