From def6296d4d11e14b471afcc92be5d808bedc5fd6 Mon Sep 17 00:00:00 2001 From: Klaus Date: Mon, 1 Sep 2025 11:02:54 +0900 Subject: [PATCH] =?UTF-8?q?fix(chat-character):=20=EC=BA=90=EB=A6=AD?= =?UTF-8?q?=ED=84=B0=20=EB=93=B1=EB=A1=9D/=EC=88=98=EC=A0=95=20API=20-=20?= =?UTF-8?q?=EC=9E=AC=EC=8B=9C=EB=8F=84=20=EA=B7=9C=EC=B9=99=20=EC=A0=9C?= =?UTF-8?q?=EA=B1=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../chat/character/AdminChatCharacterController.kt | 12 ------------ 1 file changed, 12 deletions(-) diff --git a/src/main/kotlin/kr/co/vividnext/sodalive/admin/chat/character/AdminChatCharacterController.kt b/src/main/kotlin/kr/co/vividnext/sodalive/admin/chat/character/AdminChatCharacterController.kt index ab05224..f248fa4 100644 --- a/src/main/kotlin/kr/co/vividnext/sodalive/admin/chat/character/AdminChatCharacterController.kt +++ b/src/main/kotlin/kr/co/vividnext/sodalive/admin/chat/character/AdminChatCharacterController.kt @@ -18,8 +18,6 @@ import org.springframework.http.HttpHeaders import org.springframework.http.HttpMethod import org.springframework.http.MediaType import org.springframework.http.client.SimpleClientHttpRequestFactory -import org.springframework.retry.annotation.Backoff -import org.springframework.retry.annotation.Retryable import org.springframework.security.access.prepost.PreAuthorize import org.springframework.web.bind.annotation.GetMapping import org.springframework.web.bind.annotation.PathVariable @@ -86,11 +84,6 @@ class AdminChatCharacterController( } @PostMapping("/register") - @Retryable( - value = [Exception::class], - maxAttempts = 3, - backoff = Backoff(delay = 1000) - ) fun registerCharacter( @RequestPart("image") image: MultipartFile, @RequestPart("request") requestString: String @@ -236,11 +229,6 @@ class AdminChatCharacterController( * @throws SodaException 변경된 데이터가 없거나 캐릭터를 찾을 수 없는 경우 */ @PutMapping("/update") - @Retryable( - value = [Exception::class], - maxAttempts = 3, - backoff = Backoff(delay = 1000) - ) fun updateCharacter( @RequestPart(value = "image", required = false) image: MultipartFile?, @RequestPart("request") requestString: String