This is an automated email from the ASF dual-hosted git repository. yongzao pushed a commit to branch remove-client-rpc-address-conflict-check in repository https://gitbox.apache.org/repos/asf/iotdb.git
commit 352e065f7e7e5c792471f36453a39759ea0fbd7d Author: YongzaoDan <[email protected]> AuthorDate: Thu Dec 28 22:05:18 2023 +0800 Finish --- .../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())) {
