This commit is contained in:
2026-02-13 12:00:54 +09:00
parent e2dbae15c0
commit 26828d0968

View File

@@ -165,11 +165,11 @@ public class ModelTrainMngCoreService {
modelMngRepository modelMngRepository
.findById(modelId) .findById(modelId)
.orElseThrow(() -> new CustomApiException("NOT_FOUND_DATA", HttpStatus.NOT_FOUND)); .orElseThrow(() -> new CustomApiException("NOT_FOUND_DATA", HttpStatus.NOT_FOUND));
//임시폴더 UID업데이트 // 임시폴더 UID업데이트
if (req.getRequestPath() != null && !req.getRequestPath().isEmpty()) { if (req.getRequestPath() != null && !req.getRequestPath().isEmpty()) {
entity.setRequestPath(req.getRequestPath()); entity.setRequestPath(req.getRequestPath());
} }
//TODO 삭제예정 // TODO 삭제예정
if (req.getResponsePath() != null && !req.getResponsePath().isEmpty()) { if (req.getResponsePath() != null && !req.getResponsePath().isEmpty()) {
entity.setRequestPath(req.getResponsePath()); entity.setRequestPath(req.getResponsePath());