Skip to content

Commit

Permalink
Update selector.py
Browse files Browse the repository at this point in the history
Only log from not supported filter. This validator is not validating all of use cases
  • Loading branch information
Tarjei400 authored Sep 4, 2023
1 parent 13087d5 commit 534ffb9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cosmos/dbt/selector.py
Original file line number Diff line number Diff line change
Expand Up @@ -160,7 +160,7 @@ def select_nodes(
elif any([filter_parameter.startswith(CONFIG_SELECTOR + config + ":") for config in SUPPORTED_CONFIG]):
continue
else:
raise CosmosValueError(f"Invalid {filter_type} filter: {filter_parameter}")
logger.warning(f"Invalid {filter_type} filter: {filter_parameter}")

subset_ids: set[str] = set()

Expand Down

0 comments on commit 534ffb9

Please sign in to comment.