revert dsmiley commit SOLR-3161

git-svn-id: https://svn.apache.org/repos/asf/lucene/dev/trunk@1306318 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Mark Robert Miller 2012-03-28 13:38:05 +00:00
parent 3bbc27fc64
commit a392193e58
1 changed files with 2 additions and 1 deletions

View File

@ -41,6 +41,7 @@ import org.slf4j.LoggerFactory;
public final class RequestHandlers {
public static Logger log = LoggerFactory.getLogger(RequestHandlers.class);
public static final String DEFAULT_HANDLER_NAME="standard";
protected final SolrCore core;
// Use a synchronized map - since the handlers can be changed at runtime,
// the map implementation should be thread safe
@ -181,7 +182,7 @@ public final class RequestHandlers {
}
}
if(get("") == null) register("", get("/select"));//defacto default handler
if(get("") == null) register("", get(DEFAULT_HANDLER_NAME));
}