Repository: falcon Updated Branches: refs/heads/master 932965b9e -> d78dffd4f
FALCON-1578 post-processing action fails with javax.servlet.jsp.el.ELException. Contributed by Venkat Ramachandran. Project: http://git-wip-us.apache.org/repos/asf/falcon/repo Commit: http://git-wip-us.apache.org/repos/asf/falcon/commit/d78dffd4 Tree: http://git-wip-us.apache.org/repos/asf/falcon/tree/d78dffd4 Diff: http://git-wip-us.apache.org/repos/asf/falcon/diff/d78dffd4 Branch: refs/heads/master Commit: d78dffd4ffc433f5ca58cf442771b393e76fe099 Parents: 932965b Author: Ajay Yadava <[email protected]> Authored: Wed Nov 4 15:42:27 2015 +0530 Committer: Ajay Yadava <[email protected]> Committed: Wed Nov 4 17:28:09 2015 +0530 ---------------------------------------------------------------------- CHANGES.txt | 2 ++ .../falcon/lifecycle/engine/oozie/utils/OozieBuilderUtils.java | 1 + 2 files changed, 3 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/falcon/blob/d78dffd4/CHANGES.txt ---------------------------------------------------------------------- diff --git a/CHANGES.txt b/CHANGES.txt index ea8d226..ebb22cd 100755 --- a/CHANGES.txt +++ b/CHANGES.txt @@ -23,6 +23,8 @@ Trunk (Unreleased) OPTIMIZATIONS BUG FIXES + FALCON-1578 post-processing action fails with javax.servlet.jsp.el.ELException(Venkat Ramachandran via Ajay Yadava) + FALCON-1579 post-processing action fails with javax.servlet.jsp.el.ELException (Sowmya Ramesh via Pallavi Rao) FALCON-1553 Flaky test in SchedulerUtilTest (Balu Vellanki via Pallavi Rao) http://git-wip-us.apache.org/repos/asf/falcon/blob/d78dffd4/lifecycle/src/main/java/org/apache/falcon/lifecycle/engine/oozie/utils/OozieBuilderUtils.java ---------------------------------------------------------------------- diff --git a/lifecycle/src/main/java/org/apache/falcon/lifecycle/engine/oozie/utils/OozieBuilderUtils.java b/lifecycle/src/main/java/org/apache/falcon/lifecycle/engine/oozie/utils/OozieBuilderUtils.java index 1aeb149..732a9e7 100644 --- a/lifecycle/src/main/java/org/apache/falcon/lifecycle/engine/oozie/utils/OozieBuilderUtils.java +++ b/lifecycle/src/main/java/org/apache/falcon/lifecycle/engine/oozie/utils/OozieBuilderUtils.java @@ -319,6 +319,7 @@ public final class OozieBuilderUtils { props.put(WorkflowExecutionArgs.ENTITY_NAME.getName(), entity.getName()); props.put(WorkflowExecutionArgs.ENTITY_TYPE.getName(), entity.getEntityType().name()); props.put(WorkflowExecutionArgs.CLUSTER_NAME.getName(), cluster.getName()); + props.put(WorkflowExecutionArgs.DATASOURCE_NAME.getName(), "NA"); props.put("falconDataOperation", operation.name()); props.put(WorkflowExecutionArgs.LOG_DIR.getName(),
