Browse Source

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

krish 8 years ago
parent
commit
dc21298

+ 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