[ https://issues.apache.org/jira/browse/KNOX-3012?focusedWorklogId=908070&page=com.atlassian.jira.plugin.system.issuetabpanels:worklog-tabpanel#worklog-908070 ]
ASF GitHub Bot logged work on KNOX-3012: ---------------------------------------- Author: ASF GitHub Bot Created on: 04/Mar/24 13:50 Start Date: 04/Mar/24 13:50 Worklog Time Spent: 10m Work Description: smolnar82 merged PR #873: URL: https://github.com/apache/knox/pull/873 Issue Time Tracking ------------------- Worklog Id: (was: 908070) Time Spent: 20m (was: 10m) > 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)