Skip to content

Commit

Permalink
do not use proxy caching rules for crawling
Browse files Browse the repository at this point in the history
git-svn-id: https://svn.berlios.de/svnroot/repos/yacy/trunk@5344 6c8d7289-2bf4-0310-a012-ef5d649a1542
  • Loading branch information
orbiter committed Nov 14, 2008
1 parent fd83e59 commit 8c96bc2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion source/de/anomic/plasma/plasmaSwitchboard.java
Expand Up @@ -1032,7 +1032,7 @@ public boolean htEntryStoreProcess(final indexDocumentMetadata entry) {

// work off unwritten files
if (entry.cacheArray() != null) {
final String error = entry.shallStoreCacheForProxy();
final String error = (entry.initiator() == null) ? entry.shallStoreCacheForProxy() : null;
if (error == null) {
plasmaHTCache.storeFile(entry.url(), entry.cacheArray());
if (this.log.isFine()) this.log.logFine("WROTE FILE (" + entry.cacheArray().length + " bytes) for " + entry.url());
Expand Down

0 comments on commit 8c96bc2

Please sign in to comment.