YARN-4136. LinuxContainerExecutor loses info when forwarding ResourceHandlerException. Contributed by Bibin A Chundatt.
This commit is contained in:
parent
f103a70af5
commit
486d5cb803
@ -889,6 +889,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 int launchContainer(ContainerStartContext ctx) throws IOException {
|
|||||||
}
|
}
|
||||||
} 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
Block a user