Skip to content

Commit db7c801

Browse files
authored
Active Load: Fixes errors caused by Load copying resource files. (apache#16753)
1 parent e53d27c commit db7c801

File tree

1 file changed

+1
-1
lines changed
  • iotdb-core/datanode/src/main/java/org/apache/iotdb/db/storageengine/load/active

1 file changed

+1
-1
lines changed

iotdb-core/datanode/src/main/java/org/apache/iotdb/db/storageengine/load/active/ActiveLoadUtil.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -91,11 +91,11 @@ private static boolean loadTsFilesToActiveDir(
9191
targetDir = targetFilePath;
9292
}
9393

94-
loadTsFileAsyncToTargetDir(targetDir, file, isDeleteAfterLoad);
9594
loadTsFileAsyncToTargetDir(
9695
targetDir, new File(file.getAbsolutePath() + ".resource"), isDeleteAfterLoad);
9796
loadTsFileAsyncToTargetDir(
9897
targetDir, new File(file.getAbsolutePath() + ".mods"), isDeleteAfterLoad);
98+
loadTsFileAsyncToTargetDir(targetDir, file, isDeleteAfterLoad);
9999
return true;
100100
}
101101

0 commit comments

Comments
 (0)