From 5604c111c4c7514be40bf3053c2627bcc89071ef Mon Sep 17 00:00:00 2001 From: DongUk <68818952+Kim0914@users.noreply.github.com> Date: Thu, 11 Jan 2024 16:04:32 +0900 Subject: [PATCH] =?UTF-8?q?refactor:=20Async=20ThreadPool=20=EC=8A=A4?= =?UTF-8?q?=EB=A0=88=EB=93=9C=20=EC=88=98=20=EB=B3=80=EA=B2=BD?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../src/main/java/com/official/pium/config/AsyncConfig.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/backend/pium/src/main/java/com/official/pium/config/AsyncConfig.java b/backend/pium/src/main/java/com/official/pium/config/AsyncConfig.java index fffde222..52810b3e 100644 --- a/backend/pium/src/main/java/com/official/pium/config/AsyncConfig.java +++ b/backend/pium/src/main/java/com/official/pium/config/AsyncConfig.java @@ -13,7 +13,7 @@ public class AsyncConfig implements AsyncConfigurer { @Override public Executor getAsyncExecutor() { ThreadPoolTaskExecutor executor = new ThreadPoolTaskExecutor(); - executor.setCorePoolSize(40); + executor.setCorePoolSize(20); // executor.setQueueCapacity(15); // executor.setMaxPoolSize(200); executor.setThreadNamePrefix("2024-Pium-Thread: ");