Merge pull request '납품데이터셋 업로드 geojson 파일 수정' (#175) from feat/training_260324 into develop

Reviewed-on: #175
This commit was merged in pull request #175.
This commit is contained in:
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);
}
}
}