From 8a1de2465d87dbb45ef7de89ad6c8fb272d5255d Mon Sep 17 00:00:00 2001 From: Chris Hronek Date: Thu, 27 Jul 2023 13:55:51 -0600 Subject: [PATCH] Fix bug causing select and exclude filter issues --- cosmos/converter.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cosmos/converter.py b/cosmos/converter.py index 1b267b0a3..7b3a7cd60 100644 --- a/cosmos/converter.py +++ b/cosmos/converter.py @@ -161,7 +161,7 @@ def __init__( validate_arguments(select, exclude, profile_args, task_args) build_airflow_graph( - nodes=dbt_graph.nodes, + nodes=dbt_graph.filtered_nodes, dag=dag or (task_group and task_group.dag), task_group=task_group, execution_mode=execution_mode,