Skip to content

Commit

Permalink
fix(core): remove check for taskGraph equality (#17862)
Browse files Browse the repository at this point in the history
  • Loading branch information
Cammisuli authored Jun 29, 2023
1 parent b70c7f4 commit 9579404
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions packages/nx/src/daemon/server/handle-hash-tasks.ts
Original file line number Diff line number Diff line change
Expand Up @@ -25,10 +25,7 @@ export async function handleHashTasks(payload: {
await getCachedSerializedProjectGraphPromise();
const nxJson = readNxJson();

if (
projectGraph !== storedProjectGraph ||
payload.taskGraph !== storedTaskGraph
) {
if (projectGraph !== storedProjectGraph) {
storedProjectGraph = projectGraph;
storedTaskGraph = payload.taskGraph;
storedHasher = new InProcessTaskHasher(
Expand Down

1 comment on commit 9579404

@vercel
Copy link

@vercel vercel bot commented on 9579404 Jun 29, 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-dev-git-master-nrwl.vercel.app
nx.dev
nx-five.vercel.app

Please sign in to comment.