YARN-4136. LinuxContainerExecutor loses info when forwarding ResourceHandlerException. Contributed by Bibin A Chundatt.
(cherry picked from commit 486d5cb803
)
This commit is contained in:
parent
d5823452b9
commit
a4288f1262
|
@ -837,6 +837,10 @@ Release 2.7.2 - UNRELEASED
|
||||||
YARN-4096. App local logs are leaked if log aggregation fails to initialize
|
YARN-4096. App local logs are leaked if log aggregation fails to initialize
|
||||||
for the app. (Jason Lowe via zxu)
|
for the app. (Jason Lowe via zxu)
|
||||||
|
|
||||||
|
YARN-4136. LinuxContainerExecutor loses info when forwarding
|
||||||
|
ResourceHandlerException. (Bibin A Chundatt via vvasudev)
|
||||||
|
|
||||||
|
|
||||||
Release 2.7.1 - 2015-07-06
|
Release 2.7.1 - 2015-07-06
|
||||||
|
|
||||||
INCOMPATIBLE CHANGES
|
INCOMPATIBLE CHANGES
|
||||||
|
|
|
@ -340,7 +340,7 @@ public class LinuxContainerExecutor extends ContainerExecutor {
|
||||||
}
|
}
|
||||||
} catch (ResourceHandlerException e) {
|
} catch (ResourceHandlerException e) {
|
||||||
LOG.error("ResourceHandlerChain.preStart() failed!", e);
|
LOG.error("ResourceHandlerChain.preStart() failed!", e);
|
||||||
throw new IOException("ResourceHandlerChain.preStart() failed!");
|
throw new IOException("ResourceHandlerChain.preStart() failed!", e);
|
||||||
}
|
}
|
||||||
|
|
||||||
try {
|
try {
|
||||||
|
|
Loading…
Reference in New Issue