fix to update cycle

git-svn-id: https://svn.berlios.de/svnroot/repos/yacy/trunk@3992 6c8d7289-2bf4-0310-a012-ef5d649a1542
This commit is contained in:
orbiter 2007-07-18 22:45:29 +00:00
parent cff019464e
commit dcb8687904
2 changed files with 4 additions and 4 deletions

View File

@ -108,8 +108,8 @@ public class psParser extends AbstractParser implements Parser {
int returnCode = ps2asciiProc.waitFor();
return (returnCode == 0);
} catch (Exception e) {
this.theLogger.logInfo("ps2ascii not found. Switching to java parser mode.");
return false;
if (this.theLogger != null) this.theLogger.logInfo("ps2ascii not found. Switching to java parser mode.");
return false;
}
}

View File

@ -183,7 +183,7 @@ public final class yacyVersion implements Comparator, Comparable {
if (process.equals("manual")) return false; // no, its a manual process
// check if the last retrieve time is a minimum time ago
long cycle = Math.max(1, sb.getConfigLong("update.cycle", 168)) * 24 * 60 * 60 * 1000;
long cycle = Math.max(1, sb.getConfigLong("update.cycle", 168)) * 60 * 60 * 1000; // update.cycle is hours
long timeLookup = sb.getConfigLong("update.time.lookup", System.currentTimeMillis());
if (timeLookup + cycle > System.currentTimeMillis()) return false; // no we have recently made a lookup
@ -205,7 +205,7 @@ public final class yacyVersion implements Comparator, Comparable {
}
// check if the last retrieve time is a minimum time ago
long cycle = Math.max(1, sb.getConfigLong("update.cycle", 168)) * 24 * 60 * 60 * 1000;
long cycle = Math.max(1, sb.getConfigLong("update.cycle", 168)) * 60 * 60 * 1000; // update.cycle is hours
long timeLookup = sb.getConfigLong("update.time.lookup", System.currentTimeMillis());
if ((!manual) && (timeLookup + cycle > System.currentTimeMillis())) {
yacyCore.log.logInfo("rulebasedUpdateInfo: too early for a lookup for a new release (timeLookup = " + timeLookup + ", cycle = " + cycle + ", now = " + System.currentTimeMillis() + ")");