Skip to content

Commit 9b0d53c

Browse files
committed
fix: AI호출 TImeout 추가변경
1 parent 2abf877 commit 9b0d53c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,7 @@ public Mono<String> classifyBatch(List<String[]> titleBodyList) {
106106
.bodyValue(payload)
107107
.retrieve()
108108
.bodyToMono(String.class)
109-
.timeout(Duration.ofSeconds(30))
109+
.timeout(Duration.ofSeconds(50))
110110
.doOnSuccess( result -> {
111111
long end = System.currentTimeMillis();
112112
log.info("[AI Batch API 호출 + 응답 수신 시간] {}ms", (end - start));

0 commit comments

Comments
 (0)