Reduced time between processing build tasks, to prevent builds with invalid criteria from holding up legitimate builds too much.

This commit is contained in:
CalDescent 2022-02-09 20:17:56 +00:00
parent 61f58173cb
commit 06b5b8f793

View File

@ -27,7 +27,7 @@ public class ArbitraryDataBuilderThread implements Runnable {
while (!Controller.isStopping()) { while (!Controller.isStopping()) {
try { try {
Thread.sleep(1000); Thread.sleep(100);
if (buildManager.arbitraryDataBuildQueue == null) { if (buildManager.arbitraryDataBuildQueue == null) {
continue; continue;