Skip to content

Commit

Permalink
Adjust thread counts
Browse files Browse the repository at this point in the history
Why the fuck have I not make this configurable yet
  • Loading branch information
Derpthemeus committed Jan 1, 2018
1 parent f069e97 commit ed5b3b0
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/main/java/com/derpthemeus/runeCoach/RuneCoach.java
Expand Up @@ -30,10 +30,10 @@ public class RuneCoach {
threadCounts.put(SummonerAccountIdUpdaterSupervisor.getInstance(), 1);
threadCounts.put(SummonerLeagueUpdaterSupervisor.getInstance(), 1);
threadCounts.put(SummonerFinderSupervisor.getInstance(), 1);
threadCounts.put(MatchFinderSupervisor.getInstance(), 1);
threadCounts.put(MatchDownloaderSupervisor.getInstance(), 1);
threadCounts.put(MatchFinderSupervisor.getInstance(), 2);
threadCounts.put(MatchDownloaderSupervisor.getInstance(), 6);
threadCounts.put(StatAggregatorSupervisor.getInstance(), 3);
threadCounts.put(PerkScoreCalculatorSupervisor.getInstance(), 7);
threadCounts.put(PerkScoreCalculatorSupervisor.getInstance(), 3);

l4j8 = new L4J8(new APICredentials(System.getenv("API_KEY"), null));
Configuration config = new Configuration()
Expand Down

0 comments on commit ed5b3b0

Please sign in to comment.