git-svn-id: https://svn.berlios.de/svnroot/repos/yacy/trunk@7576 6c8d7289-2bf4-0310-a012-ef5d649a1542
pull/1/head
orbiter 14 years ago
parent 3820525464
commit 1214615185

@ -211,9 +211,10 @@ public class CrawlQueues {
", robinsonMode=" + ((sb.isRobinsonMode()) ? "on" : "off"));
}
String queueCheck = loadIsPossible(NoticedURL.StackType.CORE);
if (queueCheck != null) {
if (log.isFine()) log.logFine("omitting de-queue/local: " + queueCheck);
String queueCheckCore = loadIsPossible(NoticedURL.StackType.CORE);
String queueCheckNoload = loadIsPossible(NoticedURL.StackType.NOLOAD);
if (queueCheckCore != null && queueCheckNoload != null) {
if (log.isFine()) log.logFine("omitting de-queue/local: " + queueCheckCore + ":" + queueCheckNoload);
return false;
}

Loading…
Cancel
Save