소스 검색

HUE-4515 [oozie] Remove oozie.bundle.application.path from properties when rerunning workflow

krish 10 년 전
부모
커밋
392221044b
1개의 변경된 파일3개의 추가작업 그리고 0개의 파일을 삭제
  1. 3 0
      desktop/libs/liboozie/src/liboozie/submission2.py

+ 3 - 0
desktop/libs/liboozie/src/liboozie/submission2.py

@@ -127,6 +127,9 @@ class Submission(object):
     if 'oozie.coord.application.path' in self.properties:
       self.properties.pop('oozie.coord.application.path')
 
+    if 'oozie.bundle.application.path' in self.properties:
+      self.properties.pop('oozie.bundle.application.path')
+
     if fail_nodes:
       self.properties.update({'oozie.wf.rerun.failnodes': fail_nodes})
     elif not skip_nodes: