From 4228ba4d97882b8e7ec9e1ea3b76093dd942ac9c Mon Sep 17 00:00:00 2001 From: auron_x Date: Fri, 5 Jan 2007 12:52:11 +0000 Subject: [PATCH] *) use VM1.4-functions instead of VM1.5-functions git-svn-id: https://svn.berlios.de/svnroot/repos/yacy/trunk@3167 6c8d7289-2bf4-0310-a012-ef5d649a1542 --- htroot/PerformanceQueues_p.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/htroot/PerformanceQueues_p.java b/htroot/PerformanceQueues_p.java index 6e6af7db7..7333c62d6 100644 --- a/htroot/PerformanceQueues_p.java +++ b/htroot/PerformanceQueues_p.java @@ -166,7 +166,7 @@ public class PerformanceQueues_p { prop.put("table_" + c + "_busysleep", busysleep); prop.put("table_" + c + "_memprereq", memprereq / 1024); // disallow setting of memprereq for indexer to prevent db from throwing OOMs - prop.put("table_" + c + "_disabled", (threadName.contains("_indexing")) ? 1 : 0); + prop.put("table_" + c + "_disabled", (threadName.endsWith("_indexing")) ? 1 : 0); c++; } prop.put("table", c);