From c3e8c23f5dcc62b19f0eda8dca5b97d5b014e25e Mon Sep 17 00:00:00 2001 From: orbiter Date: Tue, 20 Feb 2007 13:53:21 +0000 Subject: [PATCH] fix for 'CANNOT FETCH ENTRY: hash is null' bug git-svn-id: https://svn.berlios.de/svnroot/repos/yacy/trunk@3380 6c8d7289-2bf4-0310-a012-ef5d649a1542 --- source/de/anomic/plasma/plasmaSwitchboard.java | 3 +++ 1 file changed, 3 insertions(+) diff --git a/source/de/anomic/plasma/plasmaSwitchboard.java b/source/de/anomic/plasma/plasmaSwitchboard.java index 4be071231..2d1eb9700 100644 --- a/source/de/anomic/plasma/plasmaSwitchboard.java +++ b/source/de/anomic/plasma/plasmaSwitchboard.java @@ -1891,6 +1891,7 @@ public final class plasmaSwitchboard extends serverAbstractSwitch implements ser return true; } catch (IOException e) { log.logSevere(stats + ": CANNOT FETCH ENTRY: " + e.getMessage()); + noticeURL.clear(plasmaCrawlNURL.STACK_TYPE_CORE); } } return true; @@ -1975,6 +1976,7 @@ public final class plasmaSwitchboard extends serverAbstractSwitch implements ser return true; } catch (IOException e) { log.logSevere(stats + ": CANNOT FETCH ENTRY: " + e.getMessage()); + noticeURL.clear(plasmaCrawlNURL.STACK_TYPE_LIMIT); return true; // if we return a false here we will block everything } } @@ -2040,6 +2042,7 @@ public final class plasmaSwitchboard extends serverAbstractSwitch implements ser return true; } catch (IOException e) { log.logSevere(stats + ": CANNOT FETCH ENTRY: " + e.getMessage()); + noticeURL.clear(plasmaCrawlNURL.STACK_TYPE_REMOTE); return true; } }