You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@lucene.apache.org by an...@apache.org on 2016/04/22 01:53:41 UTC

[7/7] lucene-solr:branch_5x: SOLR-8771: Fix broken build that broke during backporting to 5x

SOLR-8771: Fix broken build that broke during backporting to 5x


Project: http://git-wip-us.apache.org/repos/asf/lucene-solr/repo
Commit: http://git-wip-us.apache.org/repos/asf/lucene-solr/commit/27ca43a1
Tree: http://git-wip-us.apache.org/repos/asf/lucene-solr/tree/27ca43a1
Diff: http://git-wip-us.apache.org/repos/asf/lucene-solr/diff/27ca43a1

Branch: refs/heads/branch_5x
Commit: 27ca43a16ed6d9ee83378b0532ba6c84a900eada
Parents: 443fd2d
Author: anshum <an...@apache.org>
Authored: Thu Apr 21 16:53:15 2016 -0700
Committer: anshum <an...@apache.org>
Committed: Thu Apr 21 16:53:15 2016 -0700

----------------------------------------------------------------------
 solr/core/src/java/org/apache/solr/core/SolrCores.java | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/lucene-solr/blob/27ca43a1/solr/core/src/java/org/apache/solr/core/SolrCores.java
----------------------------------------------------------------------
diff --git a/solr/core/src/java/org/apache/solr/core/SolrCores.java b/solr/core/src/java/org/apache/solr/core/SolrCores.java
index 5302d6f..65b9e21 100644
--- a/solr/core/src/java/org/apache/solr/core/SolrCores.java
+++ b/solr/core/src/java/org/apache/solr/core/SolrCores.java
@@ -125,7 +125,7 @@ class SolrCores {
       ExecutorService coreCloseExecutor = ExecutorUtil.newMDCAwareFixedThreadPool(Integer.MAX_VALUE,
           new DefaultSolrThreadFactory("coreCloseExecutor"));
       try {
-        for (SolrCore core : coreList) {
+        for (final SolrCore core : coreList) {
           coreCloseExecutor.submit(new Callable<SolrCore>() {
             @Override
             public SolrCore call() throws Exception {