Skip to content

Commit

Permalink
refactor: fcmExecutor QueueCapacity 기본값으로 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
xxeol2 committed Oct 4, 2023
1 parent 78e5820 commit 7b4a210
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion backend/src/main/java/com/festago/config/AsyncConfig.java
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,6 @@ public Executor defaultExecutor() {
public Executor fcmExecutor() {
ThreadPoolTaskExecutor executor = new ThreadPoolTaskExecutor();
executor.setCorePoolSize(4);
executor.setQueueCapacity(10);
executor.initialize();
return executor;
}
Expand Down

0 comments on commit 7b4a210

Please sign in to comment.