You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@lucene.apache.org by sh...@apache.org on 2015/09/18 16:05:24 UTC

svn commit: r1703861 - in /lucene/dev/branches/branch_5x: ./ solr/ solr/CHANGES.txt solr/core/ solr/core/src/java/org/apache/solr/core/SolrCore.java

Author: shalin
Date: Fri Sep 18 14:05:24 2015
New Revision: 1703861

URL: http://svn.apache.org/viewvc?rev=1703861&view=rev
Log:
SOLR-8066: SolrCore.checkStale method doesn't restore interrupt status

Modified:
    lucene/dev/branches/branch_5x/   (props changed)
    lucene/dev/branches/branch_5x/solr/   (props changed)
    lucene/dev/branches/branch_5x/solr/CHANGES.txt   (contents, props changed)
    lucene/dev/branches/branch_5x/solr/core/   (props changed)
    lucene/dev/branches/branch_5x/solr/core/src/java/org/apache/solr/core/SolrCore.java

Modified: lucene/dev/branches/branch_5x/solr/CHANGES.txt
URL: http://svn.apache.org/viewvc/lucene/dev/branches/branch_5x/solr/CHANGES.txt?rev=1703861&r1=1703860&r2=1703861&view=diff
==============================================================================
--- lucene/dev/branches/branch_5x/solr/CHANGES.txt (original)
+++ lucene/dev/branches/branch_5x/solr/CHANGES.txt Fri Sep 18 14:05:24 2015
@@ -111,7 +111,7 @@ Bug Fixes
   (kevin, hossman, shalin)
 
 * SOLR-8058: Fix the exclusion filter so that collections that start with js, css, img, tpl
-  can be accessed. (Upayavira, Steve Rowe, Anshum Gupta) 
+  can be accessed. (Upayavira, Steve Rowe, Anshum Gupta)
 
 Optimizations
 ----------------------
@@ -178,6 +178,8 @@ Other Changes
 * SOLR-8034: Leader no longer puts replicas in recovery in case of a failed update, when minRF
   isn't achieved. (Jessica Cheng, Timothy Potter, Anshum Gupta)
 
+* SOLR-8066: SolrCore.checkStale method doesn't restore interrupt status. (shalin)
+
 ==================  5.3.1 ==================
 
 Bug Fixes

Modified: lucene/dev/branches/branch_5x/solr/core/src/java/org/apache/solr/core/SolrCore.java
URL: http://svn.apache.org/viewvc/lucene/dev/branches/branch_5x/solr/core/src/java/org/apache/solr/core/SolrCore.java?rev=1703861&r1=1703860&r2=1703861&view=diff
==============================================================================
--- lucene/dev/branches/branch_5x/solr/core/src/java/org/apache/solr/core/SolrCore.java (original)
+++ lucene/dev/branches/branch_5x/solr/core/src/java/org/apache/solr/core/SolrCore.java Fri Sep 18 14:05:24 2015
@@ -2640,7 +2640,7 @@ public final class SolrCore implements S
     } catch (KeeperException e) {
       log.error("error refreshing solrconfig ", e);
     } catch (InterruptedException e) {
-      Thread.currentThread().isInterrupted();
+      Thread.currentThread().interrupt();
     }
     return false;
   }