Skip to content

Commit a3d4203

Browse files
committed
fix(jobprocessor): set job enqueud to true for future jobs
1 parent 6446b64 commit a3d4203

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

src/JobProcessor.ts

+1
Original file line numberDiff line numberDiff line change
@@ -392,6 +392,7 @@ export class JobProcessor {
392392
setTimeout(() => {
393393
this.jobProcessing();
394394
}, runIn);
395+
jobEnqueued = true;
395396
}
396397
if (this.localQueueProcessing < this.maxConcurrency && jobEnqueued) {
397398
// additionally run again and check if there are more jobs that we can process right now (as long concurrency not reached)

0 commit comments

Comments
 (0)