Skip to content

Commit

Permalink
Schema check: support custom identity
Browse files Browse the repository at this point in the history
  • Loading branch information
m1n0 committed Jan 16, 2024
1 parent c3c9521 commit b933ec6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion soda/core/soda/sodacl/sodacl_parser.py
Original file line number Diff line number Diff line change
Expand Up @@ -1054,7 +1054,7 @@ def __parse_schema_check(self, header_str, check_str, check_configurations) -> S
if isinstance(check_configurations, dict):
self._push_path_element(check_str, check_configurations)
for configuration_key in check_configurations:
if configuration_key not in [NAME, WARN, FAIL, ATTRIBUTES]:
if configuration_key not in [NAME, WARN, FAIL, ATTRIBUTES, IDENTITY]:
self.logs.error(
f'Invalid schema check configuration key "{configuration_key}"', location=self.location
)
Expand Down

0 comments on commit b933ec6

Please sign in to comment.