Skip to content

Commit

Permalink
feat(lib): add skipping regroup message to compute
Browse files Browse the repository at this point in the history
  • Loading branch information
narekhovhannisyan committed Dec 18, 2024
1 parent 57c2955 commit 43db5f3
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions src/if-run/lib/compute.ts
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ const {
COMPUTING_COMPONENT_PIPELINE,
REGROUPING,
OBSERVING,
SKIPPING_REGROUP,
} = STRINGS;

const childNames = new Set();
Expand Down Expand Up @@ -177,6 +178,8 @@ const computeNode = async (node: Node, params: ComputeParams): Promise<any> => {
defaults,
config,
});
} else {
console.debug(SKIPPING_REGROUP);
}
}

Expand Down

0 comments on commit 43db5f3

Please sign in to comment.