Skip to content

Commit

Permalink
[HBASE-22601] Misconfigured addition of peers leads to cluster shutdo…
Browse files Browse the repository at this point in the history
…wn. (#490)

Signed-off-by: Andrew Purtell <[email protected]>
  • Loading branch information
shahrs87 authored and apurtell committed Aug 22, 2019
1 parent 18b1ea0 commit 5cc3bf3
Showing 1 changed file with 4 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -307,6 +307,10 @@ public void run() {
}
}

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 5cc3bf3

Please sign in to comment.