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

Merged
teddy merged 1 commits from feat/training_260324 into develop 2026-03-27 10:18:15 +09:00

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);
}
}
}