NihalJain commented on code in PR #6783: URL: https://github.com/apache/hbase/pull/6783#discussion_r1990143896
########## hbase-shaded/hbase-shaded-check-invariants/src/test/resources/ensure-jars-have-correct-contents.sh: ########## @@ -96,6 +96,8 @@ allowed_expr+="|^PropertyList-1.0.dtd$" # Shaded jetty resources allowed_expr+="|^about.html$" allowed_expr+="|^jetty-dir.css$" +# Required by jetty 12 on ee8 Review Comment: https://github.com/jetty/jetty.project/pull/12833/ might help? ########## hbase-http/src/main/java/org/apache/hadoop/hbase/http/HttpServer.java: ########## @@ -796,7 +792,7 @@ private void configureAliasChecks(ServletContextHandler context, boolean shouldS if (context.getAliasChecks().stream().anyMatch(aliasCheckerClass::isInstance)) { LOG.debug("{} is already part of alias check list", aliasCheckerClass.getName()); } else { - context.addAliasCheck(new SymlinkAllowedResourceAliasChecker(context)); + context.addAliasCheck(new SymlinkAllowedResourceAliasChecker(context.getCoreContextHandler())); Review Comment: https://github.com/jetty/jetty.project/pull/12833/ might help? -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
