diff --git a/web/packages/new/photos/services/ml/worker.ts b/web/packages/new/photos/services/ml/worker.ts index c1f9f68b2d..212517bd67 100644 --- a/web/packages/new/photos/services/ml/worker.ts +++ b/web/packages/new/photos/services/ml/worker.ts @@ -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 {