This is an automated email from the ASF dual-hosted git repository.
justinchen 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 56dac8f78e0 fix (#15633)
56dac8f78e0 is described below
commit 56dac8f78e0cee6ed6bee96b99c8e9b20fa0d25b
Author: Zhenyu Luo <[email protected]>
AuthorDate: Tue Jun 3 21:18:57 2025 +0800
fix (#15633)
---
.../iotdb/db/storageengine/load/active/ActiveLoadTsFileLoader.java | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git
a/iotdb-core/datanode/src/main/java/org/apache/iotdb/db/storageengine/load/active/ActiveLoadTsFileLoader.java
b/iotdb-core/datanode/src/main/java/org/apache/iotdb/db/storageengine/load/active/ActiveLoadTsFileLoader.java
index e40acdc8785..f45a4623074 100644
---
a/iotdb-core/datanode/src/main/java/org/apache/iotdb/db/storageengine/load/active/ActiveLoadTsFileLoader.java
+++
b/iotdb-core/datanode/src/main/java/org/apache/iotdb/db/storageengine/load/active/ActiveLoadTsFileLoader.java
@@ -89,7 +89,7 @@ public class ActiveLoadTsFileLoader {
return;
}
- if (pendingQueue.enqueue(absolutePath, isTabletMode, isGeneratedByPipe)) {
+ if (pendingQueue.enqueue(absolutePath, isGeneratedByPipe, isTabletMode)) {
initFailDirIfNecessary();
adjustExecutorIfNecessary();
}