You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@lucene.apache.org by er...@apache.org on 2016/06/24 03:50:04 UTC

lucene-solr:master: SOLR-8546: TestLazyCores is failing a lot on the Jenkins cluster.

Repository: lucene-solr
Updated Branches:
  refs/heads/master f273cb1b3 -> bc1237a64


SOLR-8546: TestLazyCores is failing a lot on the Jenkins cluster.


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

Branch: refs/heads/master
Commit: bc1237a646066706a027ee42b975cf3aea82a37f
Parents: f273cb1
Author: Erick <er...@apache.org>
Authored: Thu Jun 23 20:49:27 2016 -0700
Committer: Erick <er...@apache.org>
Committed: Thu Jun 23 20:49:27 2016 -0700

----------------------------------------------------------------------
 solr/CHANGES.txt                                           | 2 ++
 solr/core/src/test/org/apache/solr/core/TestLazyCores.java | 4 +++-
 2 files changed, 5 insertions(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/lucene-solr/blob/bc1237a6/solr/CHANGES.txt
----------------------------------------------------------------------
diff --git a/solr/CHANGES.txt b/solr/CHANGES.txt
index 34e6fef..87adfde 100644
--- a/solr/CHANGES.txt
+++ b/solr/CHANGES.txt
@@ -82,6 +82,8 @@ Bug Fixes
 * SOLR-9234: srcField parameter works only when all fields are captured in the /update/json/docs
   endpoint (noble)
 
+* SOLR-8546: SOLR-8546: TestLazyCores is failing a lot on the Jenkins cluster. (Erick Erickson)
+
 Optimizations
 ----------------------
 

http://git-wip-us.apache.org/repos/asf/lucene-solr/blob/bc1237a6/solr/core/src/test/org/apache/solr/core/TestLazyCores.java
----------------------------------------------------------------------
diff --git a/solr/core/src/test/org/apache/solr/core/TestLazyCores.java b/solr/core/src/test/org/apache/solr/core/TestLazyCores.java
index c239b44..33d6934 100644
--- a/solr/core/src/test/org/apache/solr/core/TestLazyCores.java
+++ b/solr/core/src/test/org/apache/solr/core/TestLazyCores.java
@@ -668,7 +668,9 @@ public class TestLazyCores extends SolrTestCaseJ4 {
 
   @Test
   public void testMidUseUnload() throws Exception {
-    final int maximumSleepMillis = random().nextInt(10000); // sleep for up to 10 s
+    final int maximumSleepMillis = random().nextInt(9999) + 1; // sleep for up to 10 s Must add 1 because using
+                                                               // this as a seed will rea few lines down will
+                                                               // throw an exception if this is zero
     if (VERBOSE) {
       System.out.println("TestLazyCores.testMidUseUnload maximumSleepMillis="+maximumSleepMillis);
     }