Refactor: 사용자 저장시 COMPLETED로 변경

This commit is contained in:
김용수 2024-09-26 01:34:58 +09:00
parent bcfc949140
commit cf480633de

View File

@ -255,7 +255,7 @@ public class ImageService {
String dataPath = image.getDataPath(); String dataPath = image.getDataPath();
s3UploadService.uploadJson(data, dataPath); s3UploadService.uploadJson(data, dataPath);
image.updateStatus(LabelStatus.IN_PROGRESS); image.updateStatus(LabelStatus.COMPLETED);
imageRepository.save(image); imageRepository.save(image);
} }