Skip to content

Commit 2abf877

Browse files
committed
fix: timeout시간 변경
1 parent 78cbb77 commit 2abf877

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main/java/Capstone/FOSSistant/global/service/customAI/IssueListServiceImpl.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -216,7 +216,7 @@ public CompletableFuture<DifficultyResult> classifyWithAI(String title, String b
216216
long start = System.currentTimeMillis();
217217

218218
return aiClassifierClient.classify(title, body)
219-
.timeout(Duration.ofSeconds(30))
219+
.timeout(Duration.ofSeconds(50))
220220
.onErrorResume(TimeoutException.class, e -> {
221221
log.error("[NETWORK] AI 호출 타임아웃: {}ms — {}", System.currentTimeMillis()-start, title, e);
222222
return aiClassifierClient.defaultSingleResult();

0 commit comments

Comments
 (0)