[
https://issues.apache.org/jira/browse/HBASE-29026?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=17929325#comment-17929325
]
Hudson commented on HBASE-29026:
--------------------------------
Results for branch branch-2.6
[build #283 on
builds.a.o|https://ci-hbase.apache.org/job/HBase%20Nightly/job/branch-2.6/283/]:
(x) *{color:red}-1 overall{color}*
----
details (if available):
(/) {color:green}+1 general checks{color}
-- For more information [see general
report|https://ci-hbase.apache.org/job/HBase%20Nightly/job/branch-2.6/283/General_20Nightly_20Build_20Report/]
(/) {color:green}+1 jdk8 hadoop2 checks{color}
-- For more information [see jdk8 (hadoop2)
report|https://ci-hbase.apache.org/job/HBase%20Nightly/job/branch-2.6/283/JDK8_20Nightly_20Build_20Report_20_28Hadoop2_29/]
(x) {color:red}-1 jdk8 hadoop3 checks{color}
-- For more information [see jdk8 (hadoop3)
report|https://ci-hbase.apache.org/job/HBase%20Nightly/job/branch-2.6/283/JDK8_20Nightly_20Build_20Report_20_28Hadoop3_29/]
(/) {color:green}+1 jdk11 hadoop3 checks{color}
-- For more information [see jdk11
report|https://ci-hbase.apache.org/job/HBase%20Nightly/job/branch-2.6/283/JDK11_20Nightly_20Build_20Report_20_28Hadoop3_29/]
(/) {color:green}+1 jdk17 hadoop3 checks{color}
-- For more information [see jdk17
report|https://ci-hbase.apache.org/job/HBase%20Nightly/job/branch-2.6/283/JDK17_20Nightly_20Build_20Report_20_28Hadoop3_29/]
(/) {color:green}+1 jdk17 hadoop ${HADOOP_THREE_VERSION} backward compatibility
checks{color}
-- For more information [see jdk17
report|https://ci-hbase.apache.org/job/HBase%20Nightly/job/branch-2.6/283/JDK17_20Nightly_20Build_20Report_20_28Hadoop3_29/]
(/) {color:green}+1 jdk17 hadoop ${HADOOP_THREE_VERSION} backward compatibility
checks{color}
-- For more information [see jdk17
report|https://ci-hbase.apache.org/job/HBase%20Nightly/job/branch-2.6/283/JDK17_20Nightly_20Build_20Report_20_28Hadoop3_29/]
(x) {color:red}-1 jdk17 hadoop ${HADOOP_THREE_VERSION} backward compatibility
checks{color}
-- For more information [see jdk17
report|https://ci-hbase.apache.org/job/HBase%20Nightly/job/branch-2.6/283/JDK17_20Nightly_20Build_20Report_20_28Hadoop3_29/]
(/) {color:green}+1 source release artifact{color}
-- See build output for details.
(/) {color:green}+1 client integration test for HBase 2 {color}
(/) {color:green}+1 client integration test for 3.3.5 {color}
(/) {color:green}+1 client integration test for 3.3.6 {color}
(/) {color:green}+1 client integration test for 3.4.0 {color}
(/) {color:green}+1 client integration test for 3.4.1 {color}
> Replace some deprecated calls
> -----------------------------
>
> Key: HBASE-29026
> URL: https://issues.apache.org/jira/browse/HBASE-29026
> Project: HBase
> Issue Type: Task
> Components: UI
> Affects Versions: 4.0.0-alpha-1
> Reporter: Dávid Paksy
> Assignee: Dávid Paksy
> Priority: Major
> Labels: pull-request-available
> Fix For: 2.7.0, 3.0.0-beta-2, 2.6.3, 2.5.12
>
>
> While working on https://issues.apache.org/jira/browse/HBASE-28832 I noticed
> that there are several calls to deprecated methods.
> * {{java.net.URLEncoder.encode()}} - Deprecated. The resulting string may
> vary depending on the platform's default encoding. Instead, use the
> encode(String,String) method to specify the encoding.
> * java.net.URLEncoder.encode(String) -> java.net.URLEncoder.encode(String,
> Charset)
> * org.apache.hadoop.util.StringUtils.humanReadableInt(long) ->
> org.apache.hadoop.util.StringUtils.TraditionalBinaryPrefix.long2String(long,
> "", 1)
> * org.apache.hadoop.fs.FileSystem.getLength(Path) ->
> getFileStatus(Path).getLen()
> * org.apache.hadoop.hbase.ServerName.getStartcode() ->
> org.apache.hadoop.hbase.ServerName.getStartCode()
> These will not be replaced as we'd need to add commons-text dependency which
> was decided no to do (see PR):
> * {{org.apache.commons.lang3.StringEscapeUtils.escapeHtml4()}} - Deprecated
> As of 3.6, use Apache Commons Text
> [StringEscapeUtils|https://commons.apache.org/proper/commons-text/javadocs/api-release/org/apache/commons/text/StringEscapeUtils.html]
> instead
> * {{org.apache.commons.lang3.StringEscapeUtils.escapeXml()}} - Deprecated As
> of 3.6, use Apache Commons Text
> [StringEscapeUtils|https://commons.apache.org/proper/commons-text/javadocs/api-release/org/apache/commons/text/StringEscapeUtils.html]
> instead
--
This message was sent by Atlassian Jira
(v8.20.10#820010)