Skip to content

Commit 1d5649c

Browse files
authored
HBASE-29690 Correct typo in TableReplicationQueueStorage.removeAllQueues exception message (#7420)
Co-authored-by: Daniel Roudnitsky <[email protected]> Signed-off-by: Nihal Jain <[email protected]> Signed-off-by: Pankaj Kumar <[email protected]>
1 parent a47fa6a commit 1d5649c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

hbase-replication/src/main/java/org/apache/hadoop/hbase/replication/TableReplicationQueueStorage.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -376,7 +376,7 @@ public void removeAllQueues(String peerId) throws ReplicationException {
376376
table.delete(new Delete(result.getRow()));
377377
}
378378
} catch (IOException e) {
379-
throw new ReplicationException("failed to listAllQueueIds, peerId=" + peerId, e);
379+
throw new ReplicationException("failed to removeAllQueues, peerId=" + peerId, e);
380380
}
381381
}
382382

0 commit comments

Comments
 (0)