You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@oozie.apache.org by ja...@apache.org on 2016/07/20 06:29:24 UTC

oozie git commit: OOZIE-2462 When calling ParamChecker.notNull() in CoordActionsIgnoreXCommand.java, 'Action' should be passed instead of 'Action cannot be null' (mballur via jaydeepvishwakarma)

Repository: oozie
Updated Branches:
  refs/heads/master 1103a9631 -> 9a708c676


OOZIE-2462 When calling ParamChecker.notNull() in CoordActionsIgnoreXCommand.java, 'Action' should be passed instead of 'Action cannot be null' (mballur via jaydeepvishwakarma)


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

Branch: refs/heads/master
Commit: 9a708c676396d31d5c7891eba7e5b1d52d2b6765
Parents: 1103a96
Author: jvishwakarma <jv...@walmartlabs.com>
Authored: Wed Jul 20 11:58:44 2016 +0530
Committer: jvishwakarma <jv...@walmartlabs.com>
Committed: Wed Jul 20 11:58:44 2016 +0530

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


http://git-wip-us.apache.org/repos/asf/oozie/blob/9a708c67/core/src/main/java/org/apache/oozie/command/coord/CoordActionsIgnoreXCommand.java
----------------------------------------------------------------------
diff --git a/core/src/main/java/org/apache/oozie/command/coord/CoordActionsIgnoreXCommand.java b/core/src/main/java/org/apache/oozie/command/coord/CoordActionsIgnoreXCommand.java
index d1d93e9..88842f1 100644
--- a/core/src/main/java/org/apache/oozie/command/coord/CoordActionsIgnoreXCommand.java
+++ b/core/src/main/java/org/apache/oozie/command/coord/CoordActionsIgnoreXCommand.java
@@ -91,7 +91,7 @@ public class CoordActionsIgnoreXCommand extends IgnoreTransitionXCommand<Coordin
             throw new CommandException(ErrorCode.E1024, "no actions are eligible to ignore");
         }
         for (CoordinatorActionBean action : coordActions) {
-            ParamChecker.notNull(action, "Action cannot be null");
+            ParamChecker.notNull(action, "Action");
             if (!(action.getStatus() == Status.FAILED || action.getStatus() == Status.KILLED
                     || action.getStatus() == Status.TIMEDOUT)) {
                 LOG.info("Cannot ignore coord action = [{0}], since its status is [{1}]", action.getId(),

http://git-wip-us.apache.org/repos/asf/oozie/blob/9a708c67/release-log.txt
----------------------------------------------------------------------
diff --git a/release-log.txt b/release-log.txt
index d1eb00e..56bd515 100644
--- a/release-log.txt
+++ b/release-log.txt
@@ -1,5 +1,6 @@
 -- Oozie 4.3.0 release (trunk - unreleased)
 
+OOZIE-2462 When calling ParamChecker.notNull() in CoordActionsIgnoreXCommand.java, "Action" should be passed instead of "Action cannot be null" (mballur via jaydeepvishwakarma)
 OOZIE-2507 Expose monitoring via JMX beans in Oozie (fdenes via rkanter)
 OOZIE-2581 Oozie should reset SecurityManager in finally block (satishsaley via rohini)
 OOZIE-2579 Bulk kill tests in TestBulkWorkflowXCommand might fail because of a race condition (pbacsko via rkanter)