Skip to content

Commit

Permalink
Merge pull request #230 from sopra-fs24-group-09/develop
Browse files Browse the repository at this point in the history
Develop
  • Loading branch information
zihanltesla authored May 20, 2024
2 parents 188bd4a + c99f014 commit a5165d4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/java/ch/uzh/ifi/hase/soprafs24/Application.java
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ public void addCorsMappings(@SuppressWarnings("null") CorsRegistry registry) {
@Bean(name = "taskExecutor")
public Executor getAsyncExecutor() {
ThreadPoolTaskExecutor executor = new ThreadPoolTaskExecutor();
executor.setCorePoolSize(5);
executor.setCorePoolSize(10);
executor.setMaxPoolSize(10);
executor.setQueueCapacity(25);
executor.setThreadNamePrefix("Async-");
Expand Down

0 comments on commit a5165d4

Please sign in to comment.