MAPREDUCE-3087. Fixed the mapreduce classpath to correctly include the generated-classpath file needed for tests. Contributed by Ravi Prakash.
svn merge -c r1187658 --ignore-ancestry ../../trunk/ git-svn-id: https://svn.apache.org/repos/asf/hadoop/common/branches/branch-0.23@1187659 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
1605fb7dbc
commit
56072a170d
|
@ -1676,6 +1676,9 @@ Release 0.23.0 - Unreleased
|
|||
MAPREDUCE-3058. Fixed MR YarnChild to report failure when task throws an
|
||||
error and thus prevent a hanging task and job. (vinodkv)
|
||||
|
||||
MAPREDUCE-3087. Fixed the mapreduce classpath to correctly include the
|
||||
generated-classpath file needed for tests. (Ravi Prakash via vinodkv)
|
||||
|
||||
Release 0.22.0 - Unreleased
|
||||
|
||||
INCOMPATIBLE CHANGES
|
||||
|
|
|
@ -189,7 +189,8 @@ public class MRApps extends Apps {
|
|||
Apps.addToEnvironment(
|
||||
environment,
|
||||
Environment.CLASSPATH.name(),
|
||||
thisClassLoader.getResource(mrAppGeneratedClasspathFile).getFile());
|
||||
thisClassLoader.getResource(mrAppGeneratedClasspathFile).getFile()
|
||||
.split("!")[0]);
|
||||
|
||||
// Add standard Hadoop classes
|
||||
for (String c : ApplicationConstants.APPLICATION_CLASSPATH) {
|
||||
|
|
Loading…
Reference in New Issue