납품데이터셋 업로드 geojson 파일 수정

This commit is contained in:
2026-03-27 10:17:58 +09:00
parent 3cb9840248
commit f4a81a34d6

View File

@@ -30,7 +30,11 @@ public class DatasetBatchService {
@Transactional
public void saveBatch(List<Map<String, Object>> batch, Long datasetUid, String type) {
for (Map<String, Object> map : batch) {
insertTrainTestData(map, datasetUid, type);
try {
insertTrainTestData(map, datasetUid, type);
} catch (Exception e) {
log.error("파일 단위 실패. skip. file={}", batch, e);
}
}
}