Skip to content

Commit

Permalink
fix for 'CANNOT FETCH ENTRY: hash is null' bug
Browse files Browse the repository at this point in the history
git-svn-id: https://svn.berlios.de/svnroot/repos/yacy/trunk@3380 6c8d7289-2bf4-0310-a012-ef5d649a1542
  • Loading branch information
orbiter committed Feb 20, 2007
1 parent badab8d commit c3e8c23
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions source/de/anomic/plasma/plasmaSwitchboard.java
Expand Up @@ -1891,6 +1891,7 @@ public boolean coreCrawlJob() {
return true;
} catch (IOException e) {
log.logSevere(stats + ": CANNOT FETCH ENTRY: " + e.getMessage());
noticeURL.clear(plasmaCrawlNURL.STACK_TYPE_CORE);
}
}
return true;
Expand Down Expand Up @@ -1975,6 +1976,7 @@ public boolean limitCrawlTriggerJob() {
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
}
}
Expand Down Expand Up @@ -2040,6 +2042,7 @@ public boolean remoteTriggeredCrawlJob() {
return true;
} catch (IOException e) {
log.logSevere(stats + ": CANNOT FETCH ENTRY: " + e.getMessage());
noticeURL.clear(plasmaCrawlNURL.STACK_TYPE_REMOTE);
return true;
}
}
Expand Down

0 comments on commit c3e8c23

Please sign in to comment.