YARN-2119. DEFAULT_PROXY_ADDRESS should use DEFAULT_PROXY_PORT. (Anubhav Dhoot via kasha)
git-svn-id: https://svn.apache.org/repos/asf/hadoop/common/trunk@1600484 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
02fcb6b6ba
commit
731f417f67
@ -188,6 +188,9 @@ Release 2.5.0 - UNRELEASED
|
||||
|
||||
YARN-1550. NPE in FairSchedulerAppsBlock#render. (Anubhav Dhoot via kasha)
|
||||
|
||||
YARN-2119. DEFAULT_PROXY_ADDRESS should use DEFAULT_PROXY_PORT.
|
||||
(Anubhav Dhoot via kasha)
|
||||
|
||||
Release 2.4.1 - UNRELEASED
|
||||
|
||||
INCOMPATIBLE CHANGES
|
||||
|
@ -908,7 +908,7 @@ public class YarnConfiguration extends Configuration {
|
||||
PROXY_PREFIX + "address";
|
||||
public static final int DEFAULT_PROXY_PORT = 9099;
|
||||
public static final String DEFAULT_PROXY_ADDRESS =
|
||||
"0.0.0.0:" + DEFAULT_RM_PORT;
|
||||
"0.0.0.0:" + DEFAULT_PROXY_PORT;
|
||||
|
||||
/**
|
||||
* YARN Service Level Authorization
|
||||
|
@ -25,9 +25,12 @@
|
||||
import org.apache.hadoop.yarn.conf.YarnConfiguration;
|
||||
import org.apache.hadoop.yarn.server.webproxy.WebAppProxyServer;
|
||||
import org.junit.After;
|
||||
import org.junit.Assert;
|
||||
import org.junit.Before;
|
||||
import org.junit.Test;
|
||||
|
||||
import java.net.InetSocketAddress;
|
||||
|
||||
public class TestWebAppProxyServer {
|
||||
private WebAppProxyServer webAppProxy = null;
|
||||
private final String proxyAddress = "0.0.0.0:8888";
|
||||
@ -56,4 +59,14 @@ public void testStart() {
|
||||
}
|
||||
assertEquals(STATE.STARTED, webAppProxy.getServiceState());
|
||||
}
|
||||
|
||||
@Test
|
||||
public void testBindAddress() {
|
||||
YarnConfiguration conf = new YarnConfiguration();
|
||||
|
||||
InetSocketAddress defaultBindAddress = WebAppProxyServer.getBindAddress(conf);
|
||||
Assert.assertEquals("Web Proxy default bind address port is incorrect",
|
||||
YarnConfiguration.DEFAULT_PROXY_PORT,
|
||||
defaultBindAddress.getPort());
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user