MAPREDUCE-4012 Hadoop Job setup error leaves no useful info to users. (tgraves)
git-svn-id: https://svn.apache.org/repos/asf/hadoop/common/trunk@1308976 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
8c8dbba8a6
commit
00eb28d927
|
@ -223,6 +223,9 @@ Release 0.23.3 - UNRELEASED
|
|||
MAPREDUCE-3983. TestTTResourceReporting can fail, and should just be
|
||||
deleted (Ravi Prakash via bobby)
|
||||
|
||||
MAPREDUCE-4012 Hadoop Job setup error leaves no useful info to users
|
||||
(when LinuxTaskController is used). (tgraves)
|
||||
|
||||
Release 0.23.2 - UNRELEASED
|
||||
|
||||
INCOMPATIBLE CHANGES
|
||||
|
|
|
@ -172,7 +172,8 @@ public class LinuxContainerExecutor extends ContainerExecutor {
|
|||
int exitCode = shExec.getExitCode();
|
||||
LOG.warn("Exit code from container is : " + exitCode);
|
||||
logOutput(shExec.getOutput());
|
||||
throw new IOException("App initialization failed (" + exitCode + ")", e);
|
||||
throw new IOException("App initialization failed (" + exitCode +
|
||||
") with output: " + shExec.getOutput(), e);
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue