Skip to content

Commit

Permalink
[#472] fix: 이미지 비동기 설정 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
jyajoo committed Oct 28, 2024
1 parent 87f7e42 commit 5d440e0
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -32,9 +32,9 @@ public Executor imageUploadExecutor() {
ThreadPoolTaskExecutor executor = new ThreadPoolTaskExecutor();

executor.setThreadGroupName("imageUploadExecutor");
executor.setCorePoolSize(10);
executor.setMaxPoolSize(20);
executor.setQueueCapacity(50);
executor.setCorePoolSize(2);
executor.setMaxPoolSize(5);
executor.setQueueCapacity(10);
executor.setKeepAliveSeconds(20);
executor.setThreadNamePrefix("Async ImageUploadExecutor-");
executor.setRejectedExecutionHandler((r, exec) -> {
Expand Down

0 comments on commit 5d440e0

Please sign in to comment.