This is an automated email from the ASF dual-hosted git repository.

tanxinyu pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/iotdb.git


The following commit(s) were added to refs/heads/master by this push:
     new 539ec0f83f9 [IOTDB-6282] Remove DataNode RPC address conflict check  
(#11803)
539ec0f83f9 is described below

commit 539ec0f83f90328a7e6b3d80df6c91e2c8e712e9
Author: Yongzao <[email protected]>
AuthorDate: Fri Dec 29 10:36:29 2023 +0800

    [IOTDB-6282] Remove DataNode RPC address conflict check  (#11803)
---
 .../apache/iotdb/confignode/manager/node/ClusterNodeStartUtils.java  | 5 -----
 1 file changed, 5 deletions(-)

diff --git 
a/iotdb-core/confignode/src/main/java/org/apache/iotdb/confignode/manager/node/ClusterNodeStartUtils.java
 
b/iotdb-core/confignode/src/main/java/org/apache/iotdb/confignode/manager/node/ClusterNodeStartUtils.java
index baf293ed5e4..697dd65525d 100644
--- 
a/iotdb-core/confignode/src/main/java/org/apache/iotdb/confignode/manager/node/ClusterNodeStartUtils.java
+++ 
b/iotdb-core/confignode/src/main/java/org/apache/iotdb/confignode/manager/node/ClusterNodeStartUtils.java
@@ -291,11 +291,6 @@ public class ClusterNodeStartUtils {
     for (TDataNodeConfiguration registeredDataNode : registeredDataNodes) {
       TDataNodeLocation registeredLocation = registeredDataNode.getLocation();
 
-      if (registeredLocation
-          .getClientRpcEndPoint()
-          .equals(newDataNodeLocation.getClientRpcEndPoint())) {
-        conflictEndPointSet.add(newDataNodeLocation.getClientRpcEndPoint());
-      }
       if (registeredLocation
           .getInternalEndPoint()
           .equals(newDataNodeLocation.getInternalEndPoint())) {

Reply via email to