Skip to content

Commit

Permalink
Rollback matches in parallel
Browse files Browse the repository at this point in the history
  • Loading branch information
nypi committed Jul 8, 2022
1 parent 4143867 commit a0f7e69
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,7 @@ private void runMatch(MatchMode mode, List<MatchRequest> matchRequests) {
.map(r -> r.getBotName() + " [" + r.getMode() + "]")
.collect(Collectors.joining(", "));
System.out.println("Starting match " + matchId + ": " + bots);
ThreadPools.matchPool().submit(new MatchRunner(match, botSessions));
new MatchRunner(match, botSessions).run();
}
}

Expand Down

0 comments on commit a0f7e69

Please sign in to comment.