[
https://issues.apache.org/jira/browse/HADOOP-7351?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13043072#comment-13043072
]
Hudson commented on HADOOP-7351:
--------------------------------
Integrated in Hadoop-Common-22-branch #61 (See
[https://builds.apache.org/hudson/job/Hadoop-Common-22-branch/61/])
HADOOP-7351 Regression: HttpServer#getWebAppsPath used to be protected so
subclasses could supply alternate webapps path but it was made private by
HADOOP-6461
stack : http://svn.apache.org/viewcvs.cgi/?root=Apache-SVN&view=rev&rev=1130740
Files :
*
/hadoop/common/branches/branch-0.22/src/java/org/apache/hadoop/http/HttpServer.java
* /hadoop/common/branches/branch-0.22/CHANGES.txt
> Regression: HttpServer#getWebAppsPath used to be protected so subclasses
> could supply alternate webapps path but it was made private by HADOOP-6461
> ---------------------------------------------------------------------------------------------------------------------------------------------------
>
> Key: HADOOP-7351
> URL: https://issues.apache.org/jira/browse/HADOOP-7351
> Project: Hadoop Common
> Issue Type: Bug
> Reporter: stack
> Assignee: stack
> Fix For: 0.22.0
>
> Attachments: 7351.txt
>
>
> It USED to be protected rather than private but its access was changed by
> HADOOP-6461. It did the following:
> {code}
> - protected String getWebAppsPath() throws IOException {
> - URL url = getClass().getClassLoader().getResource("webapps");
> + private String getWebAppsPath(String appName) throws FileNotFoundException
> {
> + URL url = getClass().getClassLoader().getResource("webapps/" + appName);
> ...
> {code}
> HBase subclasses HttpServer providing its UI. This change makes it so we can
> no longer do so.
> This change made it into 0.21. I'd like to get a fix committed to 0.22 as
> well as TRUNK.
--
This message is automatically generated by JIRA.
For more information on JIRA, see: http://www.atlassian.com/software/jira