Skip to content

Commit

Permalink
Increases Checkstyle timeout to 20 seconds
Browse files Browse the repository at this point in the history
Old timeout of 10 seconds was causing sporadic issues with Checkstyle timing out on normal submissions.
  • Loading branch information
maxcmiller committed Apr 13, 2021
1 parent 5563cac commit 6f6ed7f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/chalkbox/java/checkstyle/Checkstyle.java
Original file line number Diff line number Diff line change
Expand Up @@ -144,7 +144,7 @@ public Collection run(Collection collection) {
processArgs.addAll(generateExcludedArgs(options.excluded));
processArgs.add(collection.getSource().getUnmaskedPath("src"));

process = Execution.runProcess(10000,
process = Execution.runProcess(20000,
processArgs.toArray(String[]::new));
} catch (IOException e) {
e.printStackTrace();
Expand Down

0 comments on commit 6f6ed7f

Please sign in to comment.