[
https://issues.apache.org/jira/browse/HBASE-29690?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=18034539#comment-18034539
]
Hudson commented on HBASE-29690:
--------------------------------
Results for branch master
[build #1364 on
builds.a.o|https://ci-hbase.apache.org/job/HBase%20Nightly/job/master/1364/]:
(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/master/1364/General_20Nightly_20Build_20Report/]
(x) {color:red}-1 jdk17 hadoop3 checks{color}
-- For more information [see jdk17
report|https://ci-hbase.apache.org/job/HBase%20Nightly/job/master/1364/JDK17_20Nightly_20Build_20Report_20_28Hadoop3_29/]
(/) {color:green}+1 jdk17 hadoop 3.3.5 backward compatibility checks{color}
-- For more information [see jdk17
report|https://ci-hbase.apache.org/job/HBase%20Nightly/job/master/1364/JDK17_20Nightly_20Build_20Report_20_28Hadoop3_29/]
(x) {color:red}-1 jdk17 hadoop 3.3.6 backward compatibility checks{color}
-- For more information [see jdk17
report|https://ci-hbase.apache.org/job/HBase%20Nightly/job/master/1364/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 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}
(/) {color:green}+1 client integration test for 3.4.2 {color}
> Correct typo in TableReplicationQueueStorage.removeAllQueues exception message
> ------------------------------------------------------------------------------
>
> Key: HBASE-29690
> URL: https://issues.apache.org/jira/browse/HBASE-29690
> Project: HBase
> Issue Type: Bug
> Components: Replication
> Reporter: Duo Zhang
> Assignee: Daniel Roudnitsky
> Priority: Major
> Labels: beginner, pull-request-available, trivial
> Fix For: 3.0.0-beta-2
>
>
> {code}
> @Override
> public void removeAllQueues(String peerId) throws ReplicationException {
> Scan scan = new
> Scan().setStartStopRowForPrefixScan(ReplicationQueueId.getScanPrefix(peerId))
> .addFamily(QUEUE_FAMILY).setFilter(new KeyOnlyFilter());
> try (Table table = conn.getTable(tableName); ResultScanner scanner =
> table.getScanner(scan)) {
> for (;;) {
> Result result = scanner.next();
> if (result == null) {
> break;
> }
> table.delete(new Delete(result.getRow()));
> }
> } catch (IOException e) {
> throw new ReplicationException("failed to listAllQueueIds, peerId=" +
> peerId, e);
> }
> }
> {code}
> The message in the exception message should be `removeAllQueues` instead of
> `listAllQueueIds`.
--
This message was sent by Atlassian Jira
(v8.20.10#820010)