추론 결과 조회 수정

This commit is contained in:
2026-01-22 13:31:03 +09:00
parent 86c9a6b98d
commit 14394eb909
5 changed files with 35 additions and 5 deletions

View File

@@ -542,7 +542,7 @@ public class InferenceResultService {
/** 추론 종료 */
@Transactional
public void deleteInferenceEnd() {
public UUID deleteInferenceEnd() {
SaveInferenceAiDto dto = inferenceResultCoreService.getProcessing();
if (dto == null) {
throw new CustomApiException("NOT_FOUND", HttpStatus.NOT_FOUND);
@@ -571,6 +571,7 @@ public class InferenceResultService {
// upsertGeomData
Long learnId = inferenceResultCoreService.getInferenceLearnIdByUuid(dto.getUuid());
inferenceResultCoreService.upsertGeomData(learnId);
return dto.getUuid();
}
/**