추론관리 목록 조회 수정, 추론 종료 추가

This commit is contained in:
2026-01-14 19:39:58 +09:00
parent 15fbdca89e
commit 5b6f24d4e3
4 changed files with 20 additions and 12 deletions

View File

@@ -41,7 +41,6 @@ public class ExternalHttpClient {
return new ExternalCallResult<>(code, code >= 200 && code < 300, res.getBody());
} catch (HttpClientErrorException.NotFound e) {
// ⭐ 핵심: 404를 예외가 아닌 결과로 처리
log.info("[HTTP-RES] {} {} -> 404 (Not Found)", method, url);
log.debug("[HTTP-RES-BODY] {}", e.getResponseBodyAsString());