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 02:19:22 UTC

[7/7] lucene-solr:branch_5_5: 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/297bdb63
Tree: http://git-wip-us.apache.org/repos/asf/lucene-solr/tree/297bdb63
Diff: http://git-wip-us.apache.org/repos/asf/lucene-solr/diff/297bdb63

Branch: refs/heads/branch_5_5
Commit: 297bdb63aa6720c6c204ce921f8bfc5854b4cfd4
Parents: efb7d44
Author: anshum <an...@apache.org>
Authored: Thu Apr 21 16:53:15 2016 -0700
Committer: Anshum Gupta <an...@apache.org>
Committed: Thu Apr 21 16:57:28 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/297bdb63/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 {