This is an automated email from the ASF dual-hosted git repository.
rong 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 8a1d7c0e7a3 fix:
IoTDBThreadPoolFactory.newSingleThreadScheduledExecutor
new 459e844ff68 Merge branch 'master' of github.com:apache/iotdb
8a1d7c0e7a3 is described below
commit 8a1d7c0e7a3345a289320d3358c9537b10c536e4
Author: Steve Yurong Su <[email protected]>
AuthorDate: Sun Jun 25 19:57:57 2023 +0800
fix: IoTDBThreadPoolFactory.newSingleThreadScheduledExecutor
---
.../iotdb/confignode/manager/pipe/runtime/PipeRuntimeCoordinator.java | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git
a/confignode/src/main/java/org/apache/iotdb/confignode/manager/pipe/runtime/PipeRuntimeCoordinator.java
b/confignode/src/main/java/org/apache/iotdb/confignode/manager/pipe/runtime/PipeRuntimeCoordinator.java
index 59ed8e5056c..2e877cdb35a 100644
---
a/confignode/src/main/java/org/apache/iotdb/confignode/manager/pipe/runtime/PipeRuntimeCoordinator.java
+++
b/confignode/src/main/java/org/apache/iotdb/confignode/manager/pipe/runtime/PipeRuntimeCoordinator.java
@@ -49,7 +49,7 @@ public class PipeRuntimeCoordinator implements
IClusterStatusSubscriber {
synchronized (PipeRuntimeCoordinator.class) {
if (procedureSubmitterHolder.get() == null) {
procedureSubmitterHolder.set(
- IoTDBThreadPoolFactory.newSingleThreadScheduledExecutor(
+ IoTDBThreadPoolFactory.newSingleThreadExecutor(
ThreadName.PIPE_RUNTIME_PROCEDURE_SUBMITTER.getName()));
}
}