Skip to content

Commit

Permalink
fix(core): use not scheduled task graph to schedule new batches (#14884)
Browse files Browse the repository at this point in the history
  • Loading branch information
FrozenPandaz committed Feb 9, 2023
1 parent b1cef45 commit e1a5fc7
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion packages/nx/src/tasks-runner/tasks-schedule.ts
Original file line number Diff line number Diff line change
Expand Up @@ -188,7 +188,8 @@ export class TasksSchedule {
} as TaskGraph));

batch.tasks[task.id] = task;
batch.dependencies[task.id] = this.taskGraph.dependencies[task.id];
batch.dependencies[task.id] =
this.notScheduledTaskGraph.dependencies[task.id];
if (isRoot) {
batch.roots.push(task.id);
}
Expand Down

1 comment on commit e1a5fc7

@vercel
Copy link

@vercel vercel bot commented on e1a5fc7 Feb 9, 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-nrwl.vercel.app
nx-five.vercel.app
nx-dev-git-master-nrwl.vercel.app
nx.dev

Please sign in to comment.