Skip to content

Commit 76ebe71

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

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)