fix(core): add missing await when processing task for batches (#17027)
This commit is contained in:
parent
7aff48d3d2
commit
5141c9f9d6
@ -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
|
||||||
|
);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user