fix(core): add missing await when processing task for batches (#17027)

This commit is contained in:
Leosvel Pérez Espinosa 2023-05-15 18:49:38 +01:00 committed by GitHub
parent 7aff48d3d2
commit 5141c9f9d6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -196,7 +196,12 @@ export class TasksSchedule {
for (const dep of this.reverseTaskDeps[task.id]) { for (const dep of this.reverseTaskDeps[task.id]) {
const depTask = this.taskGraph.tasks[dep]; const depTask = this.taskGraph.tasks[dep];
this.processTaskForBatches(batches, depTask, rootExecutorName, false); await this.processTaskForBatches(
batches,
depTask,
rootExecutorName,
false
);
} }
} }