YARN-9813. RM does not start on JDK11 when UIv2 is enabled. (Adam Antal/Eric Yang via wangda)
Change-Id: I18b8edc930b2efa0652f59c246931ad0d46827f3
This commit is contained in:
parent
c46d43ab13
commit
34b82e6da0
|
@ -1232,8 +1232,7 @@ public class ResourceManager extends CompositeService
|
|||
|
||||
if (null == onDiskPath) {
|
||||
String war = "hadoop-yarn-ui-" + VersionInfo.getVersion() + ".war";
|
||||
URLClassLoader cl = (URLClassLoader) ClassLoader.getSystemClassLoader();
|
||||
URL url = cl.findResource(war);
|
||||
URL url = getClass().getClassLoader().getResource(war);
|
||||
|
||||
if (null == url) {
|
||||
onDiskPath = getWebAppsPath("ui2");
|
||||
|
|
Loading…
Reference in New Issue