global scheduled tasks can't have 0 initial delay

This commit is contained in:
2024-05-31 14:54:08 +02:00
parent d5ee07b12c
commit ea287076ee
@@ -46,7 +46,7 @@ public class WorkSplitter {
processChunkWork(chunkWork, sel, operation); processChunkWork(chunkWork, sel, operation);
}); });
} }
}), 0, 1); }), 1, 1);
} }