MAPREDUCE-6420. Interrupted Exception in LocalContainerLauncher should be logged in warn/info level. Contributed by Chang Li
This commit is contained in:
parent
ec0dc71cab
commit
826715622e
@ -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
|
||||
|
@ -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;
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user