Skip to content

Commit

Permalink
Closes OOZIE-99 action errorMessage is not being set
Browse files Browse the repository at this point in the history
  • Loading branch information
tucu00 committed May 12, 2011
1 parent 4540049 commit d1e7102
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion core/src/main/java/org/apache/oozie/DagELFunctions.java
Expand Up @@ -100,7 +100,7 @@ public static void setActionInfo(WorkflowInstance workflowInstance, WorkflowActi
workflowInstance.setVar(action.getName() + WorkflowInstance.NODE_VAR_SEPARATOR + ACTION_ERROR_CODE,
action.getErrorCode());
}
if (action.getData() != null) {
if (action.getErrorMessage() != null) {
workflowInstance.setVar(action.getName() + WorkflowInstance.NODE_VAR_SEPARATOR + ACTION_ERROR_MESSAGE,
action.getErrorMessage());
}
Expand Down
1 change: 1 addition & 0 deletions release-log.txt
@@ -1,5 +1,6 @@
-- Oozie 3.0.1 release

OOZIE-99 action errorMessage is not being set
OOZIE-93 coordinator start and end instances doesn't work with float number.
OOZIE-80 Make coordinator backward compatible
OOZIE-58 Add date/time formatting function to coord.
Expand Down

0 comments on commit d1e7102

Please sign in to comment.