[ https://issues.apache.org/jira/browse/KNOX-3012?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=17823198#comment-17823198 ]
ASF subversion and git services commented on KNOX-3012: ------------------------------------------------------- Commit 95d5b6eba21ed0fd80551f40556de02318f22fe1 in knox's branch refs/heads/master from Zita Dombi [ https://gitbox.apache.org/repos/asf?p=knox.git;h=95d5b6eba ] KNOX-3012 - Fix the DN links on the Ozone SCM UI (#873) * Fix outbound rule for DN links * Fix filter path too * Add new version directory for ozone-scm and add changes there > Fix the DN links on the Ozone SCM UI > ------------------------------------ > > Key: KNOX-3012 > URL: https://issues.apache.org/jira/browse/KNOX-3012 > Project: Apache Knox > Issue Type: Bug > Reporter: Zita Dombi > Assignee: Zita Dombi > Priority: Major > Time Spent: 20m > Remaining Estimate: 0h > > In HDDS-9732 we changed the datanode links on the SCM UI in Ozone, which we > need to follow in Knox too. > From this: > {code:java} > <a > href="{{typestat.portval.toLowerCase()}}://{{typestat.hostname}}:{{typestat.portno}}" > target="_blank">{{typestat.hostname}}</a> > {code} > To this: > {code:java} > <a href="{{typestat.protocol}}://{{typestat.hostname}}:{{typestat.port}}" > target="_blank">{{typestat.hostname}}</a> > {code} > We didn't adjust this in Knox, it's still looking for the previous one: > {code:java} > <!-- outbound rule for the datanode links on SCM UI --> > <rule dir="OUT" name="OZONE-SCM/ozone-scm/outbound/datanode/address"> > <match > pattern="{{typestat.portval.toLowerCase()}}://{{typestat.hostname}}:{{typestat.portno}}"/> > <rewrite > template="{gateway.url}/ozone-scm/datanode/index.html?host={{typestat.portval.toLowerCase()}}://{{typestat.hostname}}:{{typestat.portno}} > "/> > </rule> > {code} -- This message was sent by Atlassian Jira (v8.20.10#820010)