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
apache#500)

Signed-off-by: Duo Zhang <[email protected]>
  • Loading branch information
shahrs87 authored and Apache9 committed Sep 20, 2019
1 parent 05ae6cb commit 91b1f69
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 91b1f69

Please sign in to comment.