We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2abf877 commit 9b0d53cCopy full SHA for 9b0d53c
src/main/java/Capstone/FOSSistant/global/service/customAI/AIClassifierClient.java
@@ -106,7 +106,7 @@ public Mono<String> classifyBatch(List<String[]> titleBodyList) {
106
.bodyValue(payload)
107
.retrieve()
108
.bodyToMono(String.class)
109
- .timeout(Duration.ofSeconds(30))
+ .timeout(Duration.ofSeconds(50))
110
.doOnSuccess( result -> {
111
long end = System.currentTimeMillis();
112
log.info("[AI Batch API 호출 + 응답 수신 시간] {}ms", (end - start));
0 commit comments