MAPREDUCE-5714. Removed forceful JVM exit in shutDownJob.

(Jinghui Wang via Eric Yang)


git-svn-id: https://svn.apache.org/repos/asf/hadoop/common/trunk@1590263 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Eric Yang 2014-04-26 17:59:14 +00:00
parent b8a3e2bb20
commit 39abe66822
2 changed files with 3 additions and 4 deletions

View File

@ -79,6 +79,9 @@ Trunk (Unreleased)
BUG FIXES
MAPREDUCE-5714. Removed forceful JVM exit in shutDownJob.
(Jinghui Wang via Eric Yang)
MAPREDUCE-3194. "mapred mradmin" command is broken in mrv2
(Jason Lowe via bobby)

View File

@ -600,10 +600,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> {