mirror of https://github.com/apache/lucene.git
SOLR-350 -- use a default core name "[core]" rather then "[null]"
git-svn-id: https://svn.apache.org/repos/asf/lucene/solr/trunk@607113 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
83b7501406
commit
6ff073176e
|
@ -82,7 +82,7 @@ public class SolrDispatchFilter implements Filter
|
|||
singlecore = null;
|
||||
}
|
||||
else {
|
||||
singlecore = new SolrCore( null, null, new SolrConfig(), null );
|
||||
singlecore = new SolrCore( "core", null, new SolrConfig(), null );
|
||||
core = singlecore;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue