From 0b9370a9dc18d16aa4ab39448d0a6bada085a514 Mon Sep 17 00:00:00 2001 From: orbiter Date: Sat, 25 Nov 2006 23:33:28 +0000 Subject: [PATCH] fix for http://www.yacy-forum.de/viewtopic.php?p=28108#28108 git-svn-id: https://svn.berlios.de/svnroot/repos/yacy/trunk@3013 6c8d7289-2bf4-0310-a012-ef5d649a1542 --- source/de/anomic/plasma/plasmaCrawlNURL.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/source/de/anomic/plasma/plasmaCrawlNURL.java b/source/de/anomic/plasma/plasmaCrawlNURL.java index c49325bc3..bcbfd3f5b 100644 --- a/source/de/anomic/plasma/plasmaCrawlNURL.java +++ b/source/de/anomic/plasma/plasmaCrawlNURL.java @@ -205,7 +205,7 @@ public class plasmaCrawlNURL { System.exit(-1); } } else { - File oldCacheFile = new File(cacheStacksPath, "urlNotice1.db"); + File oldCacheFile = new File(cacheStacksPath, "urlNotice2.db"); oldCacheFile.getParentFile().mkdirs(); try { urlIndexFile = new kelondroCache(kelondroTree.open(oldCacheFile, bufferkb / 2 * 0x400, preloadTime, rowdef), bufferkb / 2 * 0x400, true, true); @@ -220,7 +220,7 @@ public class plasmaCrawlNURL { if (urlIndexFile != null) { try {urlIndexFile.close();} catch (IOException e) {} urlIndexFile = null; - File cacheFile = new File(cacheStacksPath, "urlNotice1.db"); + File cacheFile = new File(cacheStacksPath, "urlNotice2.db"); cacheFile.delete(); } openHashCache();