From 485bf1ea83581e367d3e02be801c301330c64fa0 Mon Sep 17 00:00:00 2001 From: orbiter Date: Fri, 27 Apr 2007 21:35:43 +0000 Subject: [PATCH] bugfix for robinson/remote crawl bug git-svn-id: https://svn.berlios.de/svnroot/repos/yacy/trunk@3614 6c8d7289-2bf4-0310-a012-ef5d649a1542 --- source/de/anomic/plasma/plasmaSwitchboard.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/de/anomic/plasma/plasmaSwitchboard.java b/source/de/anomic/plasma/plasmaSwitchboard.java index bebdfd7b6..85c7f7d72 100644 --- a/source/de/anomic/plasma/plasmaSwitchboard.java +++ b/source/de/anomic/plasma/plasmaSwitchboard.java @@ -1332,7 +1332,7 @@ public final class plasmaSwitchboard extends serverAbstractSwitch implements ser // we are in robinson mode, if we do not exchange index by dht distribution // we need to take care that search requests and remote indexing requests go only // to the peers in the same cluster, if we run a robinson cluster. - return getConfigBool(plasmaSwitchboard.INDEX_DIST_ALLOW, false) && !getConfigBool(plasmaSwitchboard.INDEX_RECEIVE_ALLOW, false); + return !getConfigBool(plasmaSwitchboard.INDEX_DIST_ALLOW, false) && !getConfigBool(plasmaSwitchboard.INDEX_RECEIVE_ALLOW, false); } public boolean isOpenRobinsonCluster() {