Skip to content

Commit

Permalink
Merge pull request #591 from SWM-Morandi/dev
Browse files Browse the repository at this point in the history
[FIX] 테스트 스케줄링 스레드 풀 사이즈 수정
  • Loading branch information
aj4941 authored Dec 6, 2023
2 parents 971e404 + b27c179 commit b6566c7
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ public List<BojProblem> getProblemsByApi(TestType testType, String bojId) {
List<DifficultyRange> difficultyRanges = testType.getDifficultyRanges();
List<BojProblem> bojProblems = BojProblem.initBojProblems(difficultyRanges);
String apiUrl = "https://solved.ac/api/v3/search/problem";
ExecutorService executorService = Executors.newFixedThreadPool(5);
ExecutorService executorService = Executors.newFixedThreadPool(3);

List<CompletableFuture<Void>> futures = bojProblems.stream()
.map(bojProblem -> CompletableFuture.runAsync(() -> {
Expand Down

0 comments on commit b6566c7

Please sign in to comment.