From 962ff40554fbd184fa8dcc96ef3387a04ea7410c Mon Sep 17 00:00:00 2001 From: Peng Junzhi <201250214@smail.nju.edu.cn> Date: Tue, 17 Dec 2024 19:15:15 +0800 Subject: [PATCH] fix --- .../protocol/thrift/impl/DataNodeInternalRPCServiceImpl.java | 3 --- 1 file changed, 3 deletions(-) diff --git a/iotdb-core/datanode/src/main/java/org/apache/iotdb/db/protocol/thrift/impl/DataNodeInternalRPCServiceImpl.java b/iotdb-core/datanode/src/main/java/org/apache/iotdb/db/protocol/thrift/impl/DataNodeInternalRPCServiceImpl.java index a8cd3f4c54bc..b3544644bf4b 100644 --- a/iotdb-core/datanode/src/main/java/org/apache/iotdb/db/protocol/thrift/impl/DataNodeInternalRPCServiceImpl.java +++ b/iotdb-core/datanode/src/main/java/org/apache/iotdb/db/protocol/thrift/impl/DataNodeInternalRPCServiceImpl.java @@ -1897,9 +1897,6 @@ public TShowConfigurationResp showConfiguration() { public TSStatus setSystemStatus(String status) throws TException { try { commonConfig.setNodeStatus(NodeStatus.parse(status)); - if (commonConfig.getNodeStatus().equals(NodeStatus.Removing)) { - PipeDataNodeAgent.runtime().stop(); - } } catch (Exception e) { return RpcUtils.getStatus(TSStatusCode.EXECUTE_STATEMENT_ERROR, e.getMessage()); }