Skip to content

Commit 387b21b

Browse files
committed
feat(core/dbt/graph/selector_methods.py): update ConfigSelectorMethod to select from all configurable nodes
1 parent 1efad4e commit 387b21b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

core/dbt/graph/selector_methods.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -536,7 +536,7 @@ def search(
536536
# search sources is kind of useless now source configs only have
537537
# 'enabled', which you can't really filter on anyway, but maybe we'll
538538
# add more someday, so search them anyway.
539-
for unique_id, node in self.configurable_nodes(included_nodes):
539+
for unique_id, node in self.all_nodes(included_nodes):
540540
try:
541541
value = _getattr_descend(node.config, parts)
542542
except AttributeError:

0 commit comments

Comments
 (0)