Skip to content

Commit

Permalink
fixed a problem with non-terminating crawls
Browse files Browse the repository at this point in the history
  • Loading branch information
Orbiter committed Nov 7, 2012
1 parent 61a1d32 commit 8b1c9cb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion source/net/yacy/crawler/CrawlSwitchboard.java
Expand Up @@ -164,7 +164,7 @@ public CrawlProfile getActive(final byte[] profileKey) {
m = null;
}
if ( m == null ) {
return getPassive(profileKey);
return null; //return getPassive(profileKey);
}
p = new CrawlProfile(m);
this.profilesActiveCrawlsCache.put(profileKey, p);
Expand Down

0 comments on commit 8b1c9cb

Please sign in to comment.