Skip to content

Commit

Permalink
HBASE-22601 Misconfigured addition of peers leads to cluster shutdown. (
Browse files Browse the repository at this point in the history
#499)

Signed-off-by: Duo Zhang <zhangduo@apache.org>
  • Loading branch information
shahrs87 authored and Apache9 committed Aug 21, 2019
1 parent 1b50404 commit 61a3a9f
Showing 1 changed file with 4 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -504,6 +504,10 @@ private void initialize() {
}
}

if(!this.isSourceActive()) {
return;
}

// In rare case, zookeeper setting may be messed up. That leads to the incorrect
// peerClusterId value, which is the same as the source clusterId
if (clusterId.equals(peerClusterId) && !replicationEndpoint.canReplicateToSameCluster()) {
Expand Down

0 comments on commit 61a3a9f

Please sign in to comment.