فهرست منبع

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