Navigation Menu

Skip to content

Commit

Permalink
[FIX JENKINS-40749] Set default disk free threshold to 10GB (#2695)
Browse files Browse the repository at this point in the history
  • Loading branch information
daniel-beck authored and oleg-nenashev committed Jan 8, 2017
1 parent c252a76 commit 7b51d56
Showing 1 changed file with 2 additions and 2 deletions.
Expand Up @@ -64,10 +64,10 @@ protected void doRun() {
private static final Logger LOGGER = Logger.getLogger(HudsonHomeDiskUsageChecker.class.getName());

/**
* Gets the minimum amount of space to check for, with a default of 1GB
* Gets the minimum amount of space to check for, with a default of 10GB
*/
public static long FREE_SPACE_THRESHOLD = Long.getLong(
HudsonHomeDiskUsageChecker.class.getName() + ".freeSpaceThreshold",
1024L*1024*1024);
1024L*1024*1024*10);

}

0 comments on commit 7b51d56

Please sign in to comment.