Skip to content

Commit

Permalink
refactor: 비동기 스레드 풀 40으로 설정
Browse files Browse the repository at this point in the history
  • Loading branch information
Kim0914 committed Jan 25, 2024
1 parent 370e931 commit 0830d12
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ public class AsyncConfig implements AsyncConfigurer {
@Override
public Executor getAsyncExecutor() {
ThreadPoolTaskExecutor executor = new ThreadPoolTaskExecutor();
executor.setCorePoolSize(20);
executor.setCorePoolSize(40);
executor.setThreadNamePrefix("2024-Pium-Thread: ");
executor.initialize();
return executor;
Expand Down

0 comments on commit 0830d12

Please sign in to comment.