You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@oozie.apache.org by rk...@apache.org on 2016/08/18 18:51:50 UTC

oozie git commit: OOZIE-2589 CompletedActionXCommand is hardcoded to wrong priority (tm_linfly via rkanter)

Repository: oozie
Updated Branches:
  refs/heads/master 568041dc8 -> 1b46fd92f


OOZIE-2589 CompletedActionXCommand is hardcoded to wrong priority (tm_linfly via rkanter)


Project: http://git-wip-us.apache.org/repos/asf/oozie/repo
Commit: http://git-wip-us.apache.org/repos/asf/oozie/commit/1b46fd92
Tree: http://git-wip-us.apache.org/repos/asf/oozie/tree/1b46fd92
Diff: http://git-wip-us.apache.org/repos/asf/oozie/diff/1b46fd92

Branch: refs/heads/master
Commit: 1b46fd92f10c561d14839c5a53da12d3afb46bb8
Parents: 568041d
Author: Robert Kanter <rk...@cloudera.com>
Authored: Thu Aug 18 11:51:24 2016 -0700
Committer: Robert Kanter <rk...@cloudera.com>
Committed: Thu Aug 18 11:51:24 2016 -0700

----------------------------------------------------------------------
 .../java/org/apache/oozie/command/wf/CompletedActionXCommand.java  | 2 +-
 release-log.txt                                                    | 1 +
 2 files changed, 2 insertions(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/oozie/blob/1b46fd92/core/src/main/java/org/apache/oozie/command/wf/CompletedActionXCommand.java
----------------------------------------------------------------------
diff --git a/core/src/main/java/org/apache/oozie/command/wf/CompletedActionXCommand.java b/core/src/main/java/org/apache/oozie/command/wf/CompletedActionXCommand.java
index bc39bce..26397e0 100644
--- a/core/src/main/java/org/apache/oozie/command/wf/CompletedActionXCommand.java
+++ b/core/src/main/java/org/apache/oozie/command/wf/CompletedActionXCommand.java
@@ -51,7 +51,7 @@ public class CompletedActionXCommand extends WorkflowXCommand<Void> {
     }
 
     public CompletedActionXCommand(String actionId, String externalStatus, Properties actionData, int priority) {
-        this(actionId, externalStatus, actionData, 1, 0);
+        this(actionId, externalStatus, actionData, priority, 0);
     }
 
     public CompletedActionXCommand(String actionId, String externalStatus, Properties actionData) {

http://git-wip-us.apache.org/repos/asf/oozie/blob/1b46fd92/release-log.txt
----------------------------------------------------------------------
diff --git a/release-log.txt b/release-log.txt
index b222fc0..fc3ad1c 100644
--- a/release-log.txt
+++ b/release-log.txt
@@ -1,5 +1,6 @@
 -- Oozie 4.3.0 release (trunk - unreleased)
 
+OOZIE-2589 CompletedActionXCommand is hardcoded to wrong priority (tm_linfly via rkanter)
 OOZIE-2081 WorkflowJob notification to include coordinator action id (seoeun25 via rkanter)
 OOZIE-2036 Drop support for Java 1.6 (gezapeti via jaydeepvishwakarma)
 OOZIE-2512 ShareLibservice returns incorrect path for jar (satishsaley via puru)