Skip to content

Commit

Permalink
better readability for MIN_FREE_DISK_SPACE
Browse files Browse the repository at this point in the history
git-svn-id: https://svn.berlios.de/svnroot/repos/yacy/trunk@4948 6c8d7289-2bf4-0310-a012-ef5d649a1542
  • Loading branch information
lotus committed Jun 21, 2008
1 parent 54a73b5 commit ac85c52
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion source/de/anomic/yacy/resourceObserver.java
Expand Up @@ -49,7 +49,7 @@
public final class resourceObserver {
// The minimal free space on every used volume, for now set to 100 MB.
// TODO make it configurable
private final static long MIN_FREE_DISK_SPACE = 104857600L;
private final static long MIN_FREE_DISK_SPACE = 100L /* MiB */ * 1024L * 1024L;
// Unknown for now
private final static long MIN_FREE_MEMORY = 0;
// We are called with the cleanup job every five minutes;
Expand Down

0 comments on commit ac85c52

Please sign in to comment.