From 9edd38fbc5a3ed51ee36c898513cb195973ac89f Mon Sep 17 00:00:00 2001 From: orbiter Date: Mon, 26 Apr 2010 15:24:47 +0000 Subject: [PATCH] connectionCount limit too low? git-svn-id: https://svn.berlios.de/svnroot/repos/yacy/trunk@6840 6c8d7289-2bf4-0310-a012-ef5d649a1542 --- source/de/anomic/search/Switchboard.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/de/anomic/search/Switchboard.java b/source/de/anomic/search/Switchboard.java index 9f27dfdad..6fd5238f5 100644 --- a/source/de/anomic/search/Switchboard.java +++ b/source/de/anomic/search/Switchboard.java @@ -2003,7 +2003,7 @@ public final class Switchboard extends serverSwitch { log.logInfo("dhtTransferJob: no selection, too many entries in transmission cloud: " + this.dhtDispatcher.cloudSize()); } else if (MemoryControl.available() < 1024*1024*25) { log.logInfo("dhtTransferJob: no selection, too less memory available : " + (MemoryControl.available() / 1024 / 1024) + " MB"); - } else if (Client.connectionCount() > 10) { + } else if (Client.connectionCount() > 25) { log.logInfo("dhtTransferJob: too many connections in httpc pool : " + Client.connectionCount()); } else { byte[] startHash = null, limitHash = null;