Skip to content

Commit

Permalink
fix(core): add missing await when processing task for batches (#17027)
Browse files Browse the repository at this point in the history
  • Loading branch information
leosvelperez authored May 15, 2023
1 parent 7aff48d commit 5141c9f
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion packages/nx/src/tasks-runner/tasks-schedule.ts
Original file line number Diff line number Diff line change
Expand Up @@ -196,7 +196,12 @@ export class TasksSchedule {

for (const dep of this.reverseTaskDeps[task.id]) {
const depTask = this.taskGraph.tasks[dep];
this.processTaskForBatches(batches, depTask, rootExecutorName, false);
await this.processTaskForBatches(
batches,
depTask,
rootExecutorName,
false
);
}
}

Expand Down

1 comment on commit 5141c9f

@vercel
Copy link

@vercel vercel bot commented on 5141c9f May 15, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Successfully deployed to the following URLs:

nx-dev – ./

nx-dev-git-master-nrwl.vercel.app
nx-five.vercel.app
nx.dev
nx-dev-nrwl.vercel.app

Please sign in to comment.