Merge r1495160 from trunk to branch-2 for YARN-861. TestContainerManager is failing. Contributed by Vinod Kumar Vavilapalli.
git-svn-id: https://svn.apache.org/repos/asf/hadoop/common/branches/branch-2@1495162 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
5112a228cc
commit
bf433c06c7
|
@ -607,6 +607,9 @@ Release 2.1.0-beta - UNRELEASED
|
||||||
YARN-854. Fixing YARN bugs that are failing applications in secure
|
YARN-854. Fixing YARN bugs that are failing applications in secure
|
||||||
environment. (Omkar Vinit Joshi via vinodkv)
|
environment. (Omkar Vinit Joshi via vinodkv)
|
||||||
|
|
||||||
|
YARN-861. TestContainerManager is failing. (Vinod Kumar Vavilapalli via
|
||||||
|
hitesh)
|
||||||
|
|
||||||
BREAKDOWN OF HADOOP-8562 SUBTASKS AND RELATED JIRAS
|
BREAKDOWN OF HADOOP-8562 SUBTASKS AND RELATED JIRAS
|
||||||
|
|
||||||
YARN-158. Yarn creating package-info.java must not depend on sh.
|
YARN-158. Yarn creating package-info.java must not depend on sh.
|
||||||
|
|
|
@ -150,7 +150,7 @@ public abstract class BaseContainerManagerTest {
|
||||||
LOG.info("Created localDir in " + localDir.getAbsolutePath());
|
LOG.info("Created localDir in " + localDir.getAbsolutePath());
|
||||||
LOG.info("Created tmpDir in " + tmpDir.getAbsolutePath());
|
LOG.info("Created tmpDir in " + tmpDir.getAbsolutePath());
|
||||||
|
|
||||||
String bindAddress = "127.0.0.1:12345";
|
String bindAddress = "0.0.0.0:12345";
|
||||||
conf.set(YarnConfiguration.NM_ADDRESS, bindAddress);
|
conf.set(YarnConfiguration.NM_ADDRESS, bindAddress);
|
||||||
conf.set(YarnConfiguration.NM_LOCAL_DIRS, localDir.getAbsolutePath());
|
conf.set(YarnConfiguration.NM_LOCAL_DIRS, localDir.getAbsolutePath());
|
||||||
conf.set(YarnConfiguration.NM_LOG_DIRS, localLogDir.getAbsolutePath());
|
conf.set(YarnConfiguration.NM_LOG_DIRS, localLogDir.getAbsolutePath());
|
||||||
|
|
Loading…
Reference in New Issue