Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -177,7 +177,11 @@ def resolve_components(
)

path = [path.eval(self.config, **kwargs) for path in resolved_component.field_path]
parsed_value = self._parse_yaml_if_possible(value)
# Avoid parsing strings that are meant to be strings
if not (isinstance(value, str) and valid_types == (str,)):
parsed_value = self._parse_yaml_if_possible(value)
else:
parsed_value = value
updated = dpath.set(updated_config, path, parsed_value)

if parsed_value and not updated and resolved_component.create_or_update:
Expand Down
Loading