From 8d7403082c1915e3e89d9a02cb626b7aef8e7405 Mon Sep 17 00:00:00 2001 From: Anders Date: Wed, 18 Dec 2024 11:09:46 -0500 Subject: [PATCH] Revert "stage_external_sources Comparing source_name of the node instead of the name of the node" --- macros/common/stage_external_sources.sql | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/macros/common/stage_external_sources.sql b/macros/common/stage_external_sources.sql index f8b37db..eaf5530 100644 --- a/macros/common/stage_external_sources.sql +++ b/macros/common/stage_external_sources.sql @@ -17,7 +17,7 @@ {% do sources_to_stage.append(node) %} {% endif %} {% else %} - {% if src == node.name %} + {% if src == node.source_name %} {% do sources_to_stage.append(node) %} {% endif %} {% endif %}