Skip to content

Commit

Permalink
first pass
Browse files Browse the repository at this point in the history
  • Loading branch information
MichelleArk committed Jun 22, 2023
1 parent bf15466 commit 487cfac
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion core/dbt/parser/manifest.py
Original file line number Diff line number Diff line change
Expand Up @@ -1534,7 +1534,8 @@ def _process_metrics_for_node(
def remove_dependent_project_references(manifest, external_node_unique_id):
for child_id in manifest.child_map[external_node_unique_id]:
node = manifest.expect(child_id)
node.depends_on_nodes.remove(external_node_unique_id)
if external_node_unique_id in node.depends_on_nodes:
node.depends_on_nodes.remove(external_node_unique_id)
node.created_at = time.time()


Expand Down

0 comments on commit 487cfac

Please sign in to comment.