MAPREDUCE-6420. Interrupted Exception in LocalContainerLauncher should be logged in warn/info level. Contributed by Chang Li

This commit is contained in:
Jason Lowe 2015-07-01 17:50:02 +00:00
parent ec0dc71cab
commit 826715622e
2 changed files with 4 additions and 1 deletions

View File

@ -524,6 +524,9 @@ Release 2.8.0 - UNRELEASED
MAPREDUCE-6121. JobResourceUpdater#compareFs() doesn't handle HA namespaces
(rchiang via rkanter)
MAPREDUCE-6420. Interrupted Exception in LocalContainerLauncher should be
logged in warn/info level (Chang Li via jlowe)
Release 2.7.2 - UNRELEASED
INCOMPATIBLE CHANGES

View File

@ -233,7 +233,7 @@ public void run() {
try {
event = eventQueue.take();
} catch (InterruptedException e) { // mostly via T_KILL? JOB_KILL?
LOG.error("Returning, interrupted : " + e);
LOG.warn("Returning, interrupted : " + e);
break;
}