Преглед на файлове

HUE-7112 [oozie] Do not escape characters in decision node condition

krish преди 8 години
родител
ревизия
dc212988ed
променени са 1 файла, в които са добавени 1 реда и са изтрити 1 реда
  1. 1 1
      apps/oozie/src/oozie/templates/editor2/gen/workflow-decision.xml.mako

+ 1 - 1
apps/oozie/src/oozie/templates/editor2/gen/workflow-decision.xml.mako

@@ -20,7 +20,7 @@
           % for child in node['children']:
             % if child['condition'] != 'default':
             <case to="${ node_mapping[child['to']].name }">
-              ${ child['condition'] }
+              ${ child['condition'] | n }
             </case>
             % endif
           % endfor