You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@lucene.apache.org by no...@apache.org on 2014/12/20 15:31:02 UTC

svn commit: r1646989 - /lucene/dev/trunk/solr/core/src/test/org/apache/solr/schema/TestBulkSchemaConcurrent.java

Author: noble
Date: Sat Dec 20 14:31:02 2014
New Revision: 1646989

URL: http://svn.apache.org/r1646989
Log:
NPE in tests http://jenkins.thetaphi.de/job/Lucene-Solr-5.x-Linux/11610/

Modified:
    lucene/dev/trunk/solr/core/src/test/org/apache/solr/schema/TestBulkSchemaConcurrent.java

Modified: lucene/dev/trunk/solr/core/src/test/org/apache/solr/schema/TestBulkSchemaConcurrent.java
URL: http://svn.apache.org/viewvc/lucene/dev/trunk/solr/core/src/test/org/apache/solr/schema/TestBulkSchemaConcurrent.java?rev=1646989&r1=1646988&r2=1646989&view=diff
==============================================================================
--- lucene/dev/trunk/solr/core/src/test/org/apache/solr/schema/TestBulkSchemaConcurrent.java (original)
+++ lucene/dev/trunk/solr/core/src/test/org/apache/solr/schema/TestBulkSchemaConcurrent.java Sat Dec 20 14:31:02 2014
@@ -105,6 +105,7 @@ public class TestBulkSchemaConcurrent  e
     boolean success = true;
 
     for (List e : collectErrors) {
+      if(e== null) continue;
       if(!e.isEmpty()){
         success = false;
         log.error(e.toString());