Skip to content

Commit

Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
refactor: Async 테스트 스레드 풀 설정 15로 변경
Browse files Browse the repository at this point in the history
Kim0914 committed Jan 16, 2024
1 parent 9544240 commit 81d17c3
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
@@ -13,7 +13,7 @@ public class AsyncConfig implements AsyncConfigurer {
@Override
public Executor getAsyncExecutor() {
ThreadPoolTaskExecutor executor = new ThreadPoolTaskExecutor();
executor.setCorePoolSize(15);
executor.setCorePoolSize(20);
// executor.setQueueCapacity(15);
// executor.setMaxPoolSize(200);
executor.setThreadNamePrefix("2024-Pium-Thread: ");

0 comments on commit 81d17c3

Please sign in to comment.