This is an automated email from the ASF dual-hosted git repository.
JackieTien97 pushed a commit to branch worktree-rpc-thread-opt
in repository https://gitbox.apache.org/repos/asf/iotdb.git
The following commit(s) were added to refs/heads/worktree-rpc-thread-opt by
this push:
new d171cd1cdf1 delete useless constructor of
AsyncDataNodeInternalServiceClientPoolFactory
d171cd1cdf1 is described below
commit d171cd1cdf1a44aee77842195603d23b1a18b85c
Author: JackieTien97 <[email protected]>
AuthorDate: Mon Apr 27 10:53:00 2026 +0800
delete useless constructor of AsyncDataNodeInternalServiceClientPoolFactory
---
.../main/java/org/apache/iotdb/commons/client/ClientPoolFactory.java | 4 ----
1 file changed, 4 deletions(-)
diff --git
a/iotdb-core/node-commons/src/main/java/org/apache/iotdb/commons/client/ClientPoolFactory.java
b/iotdb-core/node-commons/src/main/java/org/apache/iotdb/commons/client/ClientPoolFactory.java
index 524edaf5b7e..4a6532a4bf4 100644
---
a/iotdb-core/node-commons/src/main/java/org/apache/iotdb/commons/client/ClientPoolFactory.java
+++
b/iotdb-core/node-commons/src/main/java/org/apache/iotdb/commons/client/ClientPoolFactory.java
@@ -122,10 +122,6 @@ public class ClientPoolFactory {
private final int selectorNumOfAsyncClientManager;
- public AsyncDataNodeInternalServiceClientPoolFactory() {
- this.selectorNumOfAsyncClientManager =
conf.getSelectorNumOfClientManager();
- }
-
public AsyncDataNodeInternalServiceClientPoolFactory(int
selectorNumOfAsyncClientManager) {
this.selectorNumOfAsyncClientManager = selectorNumOfAsyncClientManager;
}