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:
Ryan McKinley 2007-12-27 19:36:36 +00:00
parent 83b7501406
commit 6ff073176e
1 changed files with 1 additions and 1 deletions

View File

@ -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;
}