SOLR_-6590

git-svn-id: https://svn.apache.org/repos/asf/lucene/dev/trunk@1629624 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Noble Paul 2014-10-06 12:16:42 +00:00
parent bfc1b3deee
commit e8afe4f5c5
1 changed files with 6 additions and 0 deletions

View File

@ -23,6 +23,7 @@ import org.apache.solr.common.util.NamedList;
import org.apache.solr.core.CoreContainer;
import org.apache.solr.handler.RequestHandlerBase;
import org.apache.solr.request.SolrQueryRequest;
import org.apache.solr.request.SolrRequestHandler;
import org.apache.solr.response.SolrQueryResponse;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
@ -136,4 +137,9 @@ public class InfoHandler extends RequestHandlerBase {
protected void setSystemInfoHandler(SystemInfoHandler systemInfoHandler) {
this.systemInfoHandler = systemInfoHandler;
}
@Override
public SolrRequestHandler getSubHandler(String path) {
return this;
}
}