MAPREDUCE-5714. Removed forceful JVM exit in shutDownJob.

(Jinghui Wang via Eric Yang)


git-svn-id: https://svn.apache.org/repos/asf/hadoop/common/branches/branch-2@1590267 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Eric Yang 2014-04-26 18:02:19 +00:00
parent 86f1b41d28
commit fef656527a
2 changed files with 3 additions and 4 deletions

View File

@ -70,6 +70,9 @@ Release 2.4.1 - UNRELEASED
BUG FIXES
MAPREDUCE-5714. Removed forceful JVM exit in shutDownJob.
(Jinghui Wang via Eric Yang)
MAPREDUCE-5818. Added "hsadmin" command into mapred.cmd. (Jian He via zjshen)
MAPREDUCE-5824. Fixed test-failure of TestPipesNonJavaInputFormat in

View File

@ -587,10 +587,6 @@ public class MRAppMaster extends CompositeService {
LOG.warn("Graceful stop failed ", t);
}
//Bring the process down by force.
//Not needed after HADOOP-7140
LOG.info("Exiting MR AppMaster..GoodBye!");
sysexit();
}
private class JobFinishEventHandler implements EventHandler<JobFinishEvent> {