Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
924060929 committed May 29, 2024
1 parent d35888a commit bbd29a6
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions fe/fe-core/src/main/java/org/apache/doris/ha/BDBHA.java
Original file line number Diff line number Diff line change
Expand Up @@ -250,6 +250,9 @@ public synchronized void removeUnReadyElectableNode(String nodeName, int totalFo

public void removeDroppedMember(ConcurrentLinkedQueue<String> removedFrontends) {
ReplicationGroupAdmin replicationGroupAdmin = environment.getReplicationGroupAdmin();
if (replicationGroupAdmin == null) {
return;
}
Set<ReplicationNode> replicationNodes = replicationGroupAdmin.getGroup().getElectableNodes();
LOG.debug("removedFrontends:{}", removedFrontends);
for (ReplicationNode replicationNode : replicationNodes) {
Expand Down

0 comments on commit bbd29a6

Please sign in to comment.