OOZIE-2462 When calling ParamChecker.notNull() in CoordActionsIgnoreXCommand.java, 'Action' should be passed instead of 'Action cannot be null' (mballur via jaydeepvishwakarma)
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 @@
             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(),
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)