Skip to content

Commit

Permalink
* set resource observer to 1000MB
Browse files Browse the repository at this point in the history
* transparent favicon

git-svn-id: https://svn.berlios.de/svnroot/repos/yacy/trunk@5160 6c8d7289-2bf4-0310-a012-ef5d649a1542
  • Loading branch information
lotus committed Sep 15, 2008
1 parent 1be2415 commit 73f233b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Binary file modified htroot/favicon.ico
Binary file not shown.
4 changes: 2 additions & 2 deletions source/de/anomic/crawler/ResourceObserver.java
Expand Up @@ -32,9 +32,9 @@
import de.anomic.tools.diskUsage;

public final class ResourceObserver {
// The minimal free space on every used volume, for now set to 100 MB.
// The minimal free space on every used volume, for now set to 1000 MB.
// TODO make it configurable
private final static long MIN_FREE_DISK_SPACE = 100L /* MiB */ * 1024L * 1024L;
private final static long MIN_FREE_DISK_SPACE = 1000L /* 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 73f233b

Please sign in to comment.