You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@hbase.apache.org by bu...@apache.org on 2018/09/26 21:57:23 UTC

[3/3] hbase git commit: HBASE-20766 Typo in VerifyReplication error.

HBASE-20766 Typo in VerifyReplication error.

closes #80.

Signed-off-by: Sean Busbey <bu...@apache.org>
(cherry picked from commit 8f8d57177952a7dc8f3a4a6e6ad5d4f3d51744c0)


Project: http://git-wip-us.apache.org/repos/asf/hbase/repo
Commit: http://git-wip-us.apache.org/repos/asf/hbase/commit/04c732e9
Tree: http://git-wip-us.apache.org/repos/asf/hbase/tree/04c732e9
Diff: http://git-wip-us.apache.org/repos/asf/hbase/diff/04c732e9

Branch: refs/heads/branch-1
Commit: 04c732e9de9b54485566d1189291aa687ceafbf6
Parents: 823b790
Author: ffernandez92 <ff...@gmail.com>
Authored: Fri Jun 29 12:20:07 2018 +0200
Committer: Sean Busbey <bu...@apache.org>
Committed: Wed Sep 26 14:56:57 2018 -0700

----------------------------------------------------------------------
 .../hadoop/hbase/mapreduce/replication/VerifyReplication.java      | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/hbase/blob/04c732e9/hbase-server/src/main/java/org/apache/hadoop/hbase/mapreduce/replication/VerifyReplication.java
----------------------------------------------------------------------
diff --git a/hbase-server/src/main/java/org/apache/hadoop/hbase/mapreduce/replication/VerifyReplication.java b/hbase-server/src/main/java/org/apache/hadoop/hbase/mapreduce/replication/VerifyReplication.java
index 1d429dc..8593074 100644
--- a/hbase-server/src/main/java/org/apache/hadoop/hbase/mapreduce/replication/VerifyReplication.java
+++ b/hbase-server/src/main/java/org/apache/hadoop/hbase/mapreduce/replication/VerifyReplication.java
@@ -288,7 +288,7 @@ public class VerifyReplication extends Configured implements Tool {
       return pair;
     } catch (ReplicationException e) {
       throw new IOException(
-          "An error occurred while trying to connect to the remove peer cluster", e);
+          "An error occurred while trying to connect to the remote peer cluster", e);
     } finally {
       if (peer != null) {
         peer.close();