You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@oozie.apache.org by an...@apache.org on 2012/01/06 22:57:51 UTC

svn commit: r1228440 - in /incubator/oozie/branches/3.1: core/src/main/java/org/apache/oozie/action/hadoop/JavaActionExecutor.java release-log.txt

Author: angeloh
Date: Fri Jan  6 21:57:51 2012
New Revision: 1228440

URL: http://svn.apache.org/viewvc?rev=1228440&view=rev
Log:
OOZIE-568 distcp action return error code -1. (Params via Mohammad)

Modified:
    incubator/oozie/branches/3.1/core/src/main/java/org/apache/oozie/action/hadoop/JavaActionExecutor.java
    incubator/oozie/branches/3.1/release-log.txt

Modified: incubator/oozie/branches/3.1/core/src/main/java/org/apache/oozie/action/hadoop/JavaActionExecutor.java
URL: http://svn.apache.org/viewvc/incubator/oozie/branches/3.1/core/src/main/java/org/apache/oozie/action/hadoop/JavaActionExecutor.java?rev=1228440&r1=1228439&r2=1228440&view=diff
==============================================================================
--- incubator/oozie/branches/3.1/core/src/main/java/org/apache/oozie/action/hadoop/JavaActionExecutor.java (original)
+++ incubator/oozie/branches/3.1/core/src/main/java/org/apache/oozie/action/hadoop/JavaActionExecutor.java Fri Jan  6 21:57:51 2012
@@ -867,6 +867,9 @@ public class JavaActionExecutor extends 
                             if (errorCode.equals("0")) {
                                 errorCode = "JA018";
                             }
+                            if (errorCode.equals("-1")) {
+                                errorCode = "JA019";
+                            }
                             errorReason = props.getProperty("error.reason");
                             log.warn("Launcher ERROR, reason: {0}", errorReason);
                             String exMsg = props.getProperty("exception.message");

Modified: incubator/oozie/branches/3.1/release-log.txt
URL: http://svn.apache.org/viewvc/incubator/oozie/branches/3.1/release-log.txt?rev=1228440&r1=1228439&r2=1228440&view=diff
==============================================================================
--- incubator/oozie/branches/3.1/release-log.txt (original)
+++ incubator/oozie/branches/3.1/release-log.txt Fri Jan  6 21:57:51 2012
@@ -1,4 +1,5 @@
 -- Oozie 3.1.1 release
+OOZIE-568 distcp action return error code -1
 OOZIE-573 error message about misconfig in starting time of coordinator and initial-instance of dataset
 OOZIE-571 Oozie validate command doesnt work for schema 0.2
 OOZIE-570 Oozie bundle is running but not materializing new actions