MAPREDUCE-4825. JobImpl.finished doesn't expect ERROR as a final job state (jlowe via bobby)
git-svn-id: https://svn.apache.org/repos/asf/hadoop/common/trunk@1414840 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
dd0ba9c0cc
commit
b43deb9af8
@ -598,6 +598,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
|
||||
|
@ -828,6 +828,7 @@ JobStateInternal finished(JobStateInternal finalState) {
|
||||
case KILLED:
|
||||
metrics.killedJob(this);
|
||||
break;
|
||||
case ERROR:
|
||||
case FAILED:
|
||||
metrics.failedJob(this);
|
||||
break;
|
||||
|
Loading…
Reference in New Issue
Block a user