From 45f55a6fad167d6e778c431c382fc3fac7979dc0 Mon Sep 17 00:00:00 2001 From: theli Date: Sun, 9 Oct 2005 04:58:09 +0000 Subject: [PATCH] *) Bugfix for wrong index-queue size displayed on status page git-svn-id: https://svn.berlios.de/svnroot/repos/yacy/trunk@883 6c8d7289-2bf4-0310-a012-ef5d649a1542 --- htroot/Status.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/htroot/Status.java b/htroot/Status.java index b24ec4eb1..1299f4d21 100644 --- a/htroot/Status.java +++ b/htroot/Status.java @@ -229,7 +229,7 @@ public class Status { // Queue information final plasmaSwitchboard sb = (plasmaSwitchboard)env; - prop.put("indexingQueueSize", Integer.toString(sb.getThread("80_indexing").getJobCount())); + prop.put("indexingQueueSize", Integer.toString(sb.getThread("80_indexing").getJobCount()+sb.indexingTasksInProcess.size())); prop.put("indexingQueueMax", Integer.toString(plasmaSwitchboard.indexingSlots)); prop.put("loaderQueueSize", Integer.toString(sb.cacheLoader.size()));