YARN-5804. New UI2 is not able to launch with jetty 9 upgrade post HADOOP-10075. (Sunil G via wangda)

(cherry picked from commit ddebaa6b7ae1031899139d153d57df5387d60542)
This commit is contained in:
Wangda Tan 2016-10-30 13:19:15 -07:00
parent 013ff07bc6
commit c00b5d1e51
2 changed files with 3 additions and 3 deletions

View File

@ -43,7 +43,7 @@
import org.apache.hadoop.security.http.XFrameOptionsFilter;
import org.apache.hadoop.yarn.conf.YarnConfiguration;
import org.apache.hadoop.yarn.webapp.util.WebAppUtils;
import org.mortbay.jetty.webapp.WebAppContext;
import org.eclipse.jetty.webapp.WebAppContext;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
@ -377,7 +377,7 @@ public WebApp start(WebApp webapp, WebAppContext ui2Context) {
WebApp webApp = build(webapp);
HttpServer2 httpServer = webApp.httpServer();
if (ui2Context != null) {
httpServer.addContext(ui2Context, true);
httpServer.addHandlerAtFront(ui2Context);
}
try {
httpServer.start();

View File

@ -115,7 +115,7 @@
import org.apache.hadoop.yarn.webapp.WebApps.Builder;
import org.apache.hadoop.yarn.webapp.util.WebAppUtils;
import org.apache.zookeeper.server.auth.DigestAuthenticationProvider;
import org.mortbay.jetty.webapp.WebAppContext;
import org.eclipse.jetty.webapp.WebAppContext;
import com.google.common.annotations.VisibleForTesting;
import java.io.IOException;