Skip to content

Commit

Permalink
fix: issue when password is in survey of WF node
Browse files Browse the repository at this point in the history
  • Loading branch information
Przemyslaw Kalitowski committed Oct 3, 2024
1 parent cb56561 commit b7412de
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
3 changes: 3 additions & 0 deletions changelogs/fragments/filetree_create_node_survey.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
---
minor_changes:
- filetree_create able export WF nodes without encrypted value in survey
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ controller_workflows:
all_parents_must_converge: "{{ node.all_parents_must_converge }}"
{% if node.extra_data is defined and node.extra_data | length > 0 %}
extra_data:
{{ node.extra_data | to_nice_yaml | indent(10) | replace("'{{", "!unsafe \'{{") }}
{{ node.extra_data | to_nice_yaml | indent(10) | replace("'{{", "!unsafe \'{{") }} | replace("$encrypted$", "")
{%- endif %}
{% if node.success_nodes is defined and node.success_nodes | length > 0 %}
success_nodes:
Expand Down

0 comments on commit b7412de

Please sign in to comment.