mirror of https://github.com/apache/lucene.git
SOLR-714 -- CoreContainer.Load uses incorrect loop variable 'i' instead of 'a'
git-svn-id: https://svn.apache.org/repos/asf/lucene/solr/trunk@688332 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
41443d51b7
commit
b355f57d80
|
@ -202,7 +202,7 @@ public class CoreContainer
|
|||
|
||||
for (int a=1; a<aliases.size(); a++) {
|
||||
core.open();
|
||||
register(aliases.get(i), core, false);
|
||||
register(aliases.get(a), core, false);
|
||||
}
|
||||
|
||||
register(name, core, false);
|
||||
|
|
Loading…
Reference in New Issue