git-svn-id: https://svn.apache.org/repos/asf/hadoop/common/branches/branch-0.23@1414844 13f79535-47bb-0310-9956-ffa450edef68
@@ -17,6 +17,9 @@ Release 0.23.6 - UNRELEASED
MAPREDUCE-4764. repair TestBinaryTokenFile (Ivan A. Veselovsky via bobby)
+ MAPREDUCE-4825. JobImpl.finished doesn't expect ERROR as a final job state
+ (jlowe via bobby)
+
Release 0.23.5 - UNRELEASED
INCOMPATIBLE CHANGES
@@ -800,6 +800,7 @@ public class JobImpl implements org.apache.hadoop.mapreduce.v2.app.job.Job,
case KILLED:
metrics.killedJob(this);
break;
+ case ERROR:
case FAILED:
metrics.failedJob(this);