From 9e1b8e8de94c1198f1118593859d59cd3f9af652 Mon Sep 17 00:00:00 2001 From: Sahil Aggarwal Date: Sun, 29 Jul 2018 10:56:47 +0530 Subject: [PATCH] HBASE-20766: Fix the exception message typo in VerifyReplication --- .../apache/hadoop/hbase/mapreduce/replication/VerifyReplication.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hbase-mapreduce/src/main/java/org/apache/hadoop/hbase/mapreduce/replication/VerifyReplication.java b/hbase-mapreduce/src/main/java/org/apache/hadoop/hbase/mapreduce/replication/VerifyReplication.java index 85eebc50bd..37bb412b07 100644 --- a/hbase-mapreduce/src/main/java/org/apache/hadoop/hbase/mapreduce/replication/VerifyReplication.java +++ b/hbase-mapreduce/src/main/java/org/apache/hadoop/hbase/mapreduce/replication/VerifyReplication.java @@ -352,7 +352,7 @@ public class VerifyReplication extends Configured implements Tool { return Pair.newPair(peerConfig, ReplicationUtils.getPeerClusterConfiguration(peerConfig, conf)); } catch (ReplicationException e) { - throw new IOException("An error occurred while trying to connect to the remove peer cluster", + throw new IOException("An error occurred while trying to connect to the remote peer cluster", e); } finally { if (localZKW != null) { -- 2.16.2