Increase liveq limit

This commit is contained in:
Manav Rathi
2024-07-04 20:19:30 +05:30
parent 26f6ab0464
commit dca76f304c

View File

@@ -125,7 +125,7 @@ export class MLWorker {
// long as we're not systematically ignoring it). This is because the
// live queue is just an optimization: if a file doesn't get indexed via
// the live queue, it'll later get indexed anyway when we backfill.
if (this.liveQ.length < 50) {
if (this.liveQ.length < 200) {
this.liveQ.push({ enteFile, uploadItem });
this.wakeUp();
} else {