[KC-116] 추론 전체 실행 파일생성 수정

This commit is contained in:
2026-01-19 18:01:49 +09:00
parent a586c440fb
commit 2b1f52bd44
3 changed files with 7 additions and 5 deletions

View File

@@ -255,12 +255,13 @@ public class MapSheetMngCoreService {
Path outputPath = Paths.get(targetDir, filename);
// 2) ALL일 때만 재사용
if (isAll && Files.exists(outputPath)) {
return outputPath.toString();
}
// if (isAll && Files.exists(outputPath)) {
// return outputPath.toString();
// }
// 3) 데이터 조회 (파일 없을 때만)
// 3) 데이터 조회
List<ImageFeature> sceneInference = mapSheetMngRepository.getSceneInference(yyyy, scenes);
if (sceneInference == null || sceneInference.isEmpty()) {
log.warn(
"NOT_FOUND_TARGET_YEAR: yyyy={}, isAll={}, scenesSize={}",