reduce batching delay to 10

This commit is contained in:
mcrcortex
2025-09-24 13:27:12 +10:00
parent 944e1c3c7f
commit ae7004f5d8

View File

@@ -188,7 +188,7 @@ public class AsyncNodeManager {
}
//This is a funny thing, wait a bit, this allows for better batching, but this thread is independent of everything else so waiting a bit should be mostly ok
try {
Thread.sleep(25);
Thread.sleep(10);
} catch (InterruptedException e) {
throw new RuntimeException(e);
}