Skip to content

Commit

Permalink
Reduce LauncherUtil check-interval from 500 to 50 ms
Browse files Browse the repository at this point in the history
500ms feels a bit long and can cause some wasted time during test runs,
especially on beefier machines. It feels safe to reduce this to 50ms,
which should work even on tiny CI runner instances, as it's mostly sleep
time + a cheap-ish "has more data" check against the log file.
  • Loading branch information
snazy committed May 4, 2023
1 parent 113b0bd commit 06bd854
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@

public final class LauncherUtil {

public static final int LOG_CHECK_INTERVAL = 500;
public static final int LOG_CHECK_INTERVAL = 50;

private LauncherUtil() {
}
Expand Down

0 comments on commit 06bd854

Please sign in to comment.