추론선택가능연도 조건 수정

This commit is contained in:
Moon
2026-01-20 09:20:35 +09:00
parent 32bae3326e
commit 698d57923a
2 changed files with 2 additions and 2 deletions

View File

@@ -350,7 +350,7 @@ public class MapSheetMngService {
List<MngDto> mngList = mapSheetMngCoreService.findMapSheetMngList();
List<MngYyyyDto> yearList =
mngList.stream()
.filter(dto -> "DONE".equals(dto.getMngState()))
.filter(dto -> "DONE".equals(dto.getMngState()) || "TAKINGERROR".equals(dto.getMngState()))
.map(dto -> new MngYyyyDto(dto.getMngYyyy(), dto.getMngPath()))
.toList();

View File

@@ -18,7 +18,7 @@ public class MapSheetMngFileJobController {
@Getter private int mngSyncPageSize = 20;
// 파일싱크 진행여부 확인하기
@Scheduled(fixedDelay = 1000 * 10)
@Scheduled(fixedDelay = 1000 * 30)
public void checkMngFileSync() {
if (!isSchedulerEnabled) return;