From cd3494a04c90d3ef09db1c3ac7833860cb7aadc2 Mon Sep 17 00:00:00 2001 From: auron_x Date: Mon, 21 May 2007 11:57:57 +0000 Subject: [PATCH] *) hint for idle indexer only appears if indexer is idle now git-svn-id: https://svn.berlios.de/svnroot/repos/yacy/trunk@3744 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 377785c04..48ff06f18 100644 --- a/htroot/Status.java +++ b/htroot/Status.java @@ -181,7 +181,7 @@ public class Status { */ // place some more hints - if ((adminaccess) && (sb.getThread(plasmaSwitchboard.CRAWLJOB_LOCAL_CRAWL).getJobCount() == 0)) { + if ((adminaccess) && (sb.getThread(plasmaSwitchboard.CRAWLJOB_LOCAL_CRAWL).getJobCount() == 0) && (sb.getThread(plasmaSwitchboard.INDEXER).getJobCount() == 0)) { prop.put("hintCrawlStart", 1); }