From cf480633de18c6aab95a4321105955d8a779a643 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=EA=B9=80=EC=9A=A9=EC=88=98?= Date: Thu, 26 Sep 2024 01:34:58 +0900 Subject: [PATCH] =?UTF-8?q?Refactor:=20=EC=82=AC=EC=9A=A9=EC=9E=90=20?= =?UTF-8?q?=EC=A0=80=EC=9E=A5=EC=8B=9C=20COMPLETED=EB=A1=9C=20=EB=B3=80?= =?UTF-8?q?=EA=B2=BD?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../java/com/worlabel/domain/image/service/ImageService.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/backend/src/main/java/com/worlabel/domain/image/service/ImageService.java b/backend/src/main/java/com/worlabel/domain/image/service/ImageService.java index f4e8ea2..4408114 100644 --- a/backend/src/main/java/com/worlabel/domain/image/service/ImageService.java +++ b/backend/src/main/java/com/worlabel/domain/image/service/ImageService.java @@ -255,7 +255,7 @@ public class ImageService { String dataPath = image.getDataPath(); s3UploadService.uploadJson(data, dataPath); - image.updateStatus(LabelStatus.IN_PROGRESS); + image.updateStatus(LabelStatus.COMPLETED); imageRepository.save(image); }