You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@lucene.apache.org by ds...@apache.org on 2018/02/01 17:06:58 UTC

lucene-solr:master: SOLR-11722: Dial down threads in ConcurrentCreateRoutedAliasTest

Repository: lucene-solr
Updated Branches:
  refs/heads/master 5b5a396b0 -> f0854ce11


SOLR-11722: Dial down threads in ConcurrentCreateRoutedAliasTest


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

Branch: refs/heads/master
Commit: f0854ce11f1e6ccaa3190c82362c0c49ec043df8
Parents: 5b5a396
Author: David Smiley <ds...@apache.org>
Authored: Thu Feb 1 12:06:36 2018 -0500
Committer: David Smiley <ds...@apache.org>
Committed: Thu Feb 1 12:06:53 2018 -0500

----------------------------------------------------------------------
 .../org/apache/solr/cloud/ConcurrentCreateRoutedAliasTest.java     | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/lucene-solr/blob/f0854ce1/solr/core/src/test/org/apache/solr/cloud/ConcurrentCreateRoutedAliasTest.java
----------------------------------------------------------------------
diff --git a/solr/core/src/test/org/apache/solr/cloud/ConcurrentCreateRoutedAliasTest.java b/solr/core/src/test/org/apache/solr/cloud/ConcurrentCreateRoutedAliasTest.java
index a76a6ff..2777e66 100644
--- a/solr/core/src/test/org/apache/solr/cloud/ConcurrentCreateRoutedAliasTest.java
+++ b/solr/core/src/test/org/apache/solr/cloud/ConcurrentCreateRoutedAliasTest.java
@@ -89,7 +89,7 @@ public class ConcurrentCreateRoutedAliasTest extends SolrTestCaseJ4 {
     // that this test wouldn't spuriously fail more than once a year. If that's true users should never see
     // an issue in the wild unless they are doing something we probably don't want to support anyway
 
-    final CreateRoutedAliasThread[] threads = new CreateRoutedAliasThread[50];
+    final CreateRoutedAliasThread[] threads = new CreateRoutedAliasThread[4];
     int numStart = num;
     for (; num < threads.length + numStart; num++) {
       final String aliasName = "testAlias" + num;