YARN-4760. proxy redirect to history server uses wrong URL. Contributed by Eric Badger
This commit is contained in:
parent
059caf9989
commit
4163e36c2b
|
@ -130,7 +130,7 @@ public class WebAppProxyServlet extends HttpServlet {
|
|||
WebAppUtils.getResolvedRMWebAppURLWithScheme(conf), "cluster", "app");
|
||||
this.ahsAppPageUrlBase = StringHelper.pjoin(
|
||||
WebAppUtils.getHttpSchemePrefix(conf) + WebAppUtils
|
||||
.getAHSWebAppURLWithoutScheme(conf), "applicationhistory", "apps");
|
||||
.getAHSWebAppURLWithoutScheme(conf), "applicationhistory", "app");
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
|
@ -275,7 +275,7 @@ public class TestWebAppProxyServlet {
|
|||
}
|
||||
String appAddressInAhs = WebAppUtils.getHttpSchemePrefix(configuration) +
|
||||
WebAppUtils.getAHSWebAppURLWithoutScheme(configuration) +
|
||||
"/applicationhistory" + "/apps/" + app.toString();
|
||||
"/applicationhistory" + "/app/" + app.toString();
|
||||
assertTrue("Webapp proxy servlet should have redirected to AHS",
|
||||
proxyConn.getURL().toString().equals(appAddressInAhs));
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue