Author: toad
Date: 2007-08-29 19:33:20 +0000 (Wed, 29 Aug 2007)
New Revision: 14920
Modified:
trunk/plugins/XMLSpider/XMLSpider.java
Log:
Increase priority of spider
Modified: trunk/plugins/XMLSpider/XMLSpider.java
===================================================================
--- trunk/plugins/XMLSpider/XMLSpider.java 2007-08-29 19:31:56 UTC (rev
14919)
+++ trunk/plugins/XMLSpider/XMLSpider.java 2007-08-29 19:33:20 UTC (rev
14920)
@@ -136,7 +136,7 @@
*/
public Set allowedMIMETypes;
private static final int MAX_ENTRIES = 20;
- private static int version = 6;
+ private static int version = 7;
private static final String pluginName = "XML spider "+version;
/**
* Gives the allowed fraction of total time spent on generating indices
with
@@ -159,7 +159,9 @@
private NodeClientCore core;
private FetchContext ctx;
- private final short PRIORITY_CLASS =
RequestStarter.BULK_SPLITFILE_PRIORITY_CLASS;
+ // Equal to Frost, ARK fetches etc. One step down from Fproxy.
+ // Any lower makes it very difficult to debug. Maybe reduce for
production - after solving the ARK bugs.
+ private final short PRIORITY_CLASS =
RequestStarter.IMMEDIATE_SPLITFILE_PRIORITY_CLASS;
private boolean stopped = true;
PluginRespirator pr;