You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@lucene.apache.org by ma...@apache.org on 2020/07/14 14:52:58 UTC

[lucene-solr] branch reference_impl updated (e8ec152 -> 4e6c6a5)

This is an automated email from the ASF dual-hosted git repository.

markrmiller pushed a change to branch reference_impl
in repository https://gitbox.apache.org/repos/asf/lucene-solr.git.


 discard e8ec152  #198 - Knock down this test.
     new 02de0bf  #139 - Knock down this test.
     new 4e6c6a5  #140 - Add Flakey.

This update added new revisions after undoing existing revisions.
That is to say, some revisions that were in the old version of the
branch are not in the new version.  This situation occurs
when a user --force pushes a change and generates a repository
containing something like this:

 * -- * -- B -- O -- O -- O   (e8ec152)
            \
             N -- N -- N   refs/heads/reference_impl (4e6c6a5)

You should already have received notification emails for all of the O
revisions, and so the following emails describe only the N revisions
from the common base, B.

Any revisions marked "omit" are not gone; other references still
refer to them.  Any revisions marked "discard" are gone forever.

The 2 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 .../org/apache/solr/client/solrj/embedded/MergeIndexesEmbeddedTest.java | 2 ++
 1 file changed, 2 insertions(+)


[lucene-solr] 02/02: #140 - Add Flakey.

Posted by ma...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

markrmiller pushed a commit to branch reference_impl
in repository https://gitbox.apache.org/repos/asf/lucene-solr.git

commit 4e6c6a577e6879d3722dc968daed90d5d33437e0
Author: markrmiller@gmail.com <ma...@gmail.com>
AuthorDate: Tue Jul 14 09:52:44 2020 -0500

    #140 - Add Flakey.
---
 .../org/apache/solr/client/solrj/embedded/MergeIndexesEmbeddedTest.java | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/solr/solrj/src/test/org/apache/solr/client/solrj/embedded/MergeIndexesEmbeddedTest.java b/solr/solrj/src/test/org/apache/solr/client/solrj/embedded/MergeIndexesEmbeddedTest.java
index 85279d7..f340119 100644
--- a/solr/solrj/src/test/org/apache/solr/client/solrj/embedded/MergeIndexesEmbeddedTest.java
+++ b/solr/solrj/src/test/org/apache/solr/client/solrj/embedded/MergeIndexesEmbeddedTest.java
@@ -19,6 +19,7 @@ package org.apache.solr.client.solrj.embedded;
 import org.apache.solr.client.solrj.MergeIndexesExampleTestBase;
 import org.apache.solr.client.solrj.SolrClient;
 import org.apache.solr.core.SolrCore;
+import org.junit.Ignore;
 
 /**
  * Test for merge indexes command
@@ -26,6 +27,7 @@ import org.apache.solr.core.SolrCore;
  * @since solr 1.4
  *
  */
+@Ignore // nocommit flakey
 public class MergeIndexesEmbeddedTest extends MergeIndexesExampleTestBase {
 
   @Override


[lucene-solr] 01/02: #139 - Knock down this test.

Posted by ma...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

markrmiller pushed a commit to branch reference_impl
in repository https://gitbox.apache.org/repos/asf/lucene-solr.git

commit 02de0bf107ba42306af05a2486e5adac46fdba26
Author: markrmiller@gmail.com <ma...@gmail.com>
AuthorDate: Tue Jul 14 09:42:10 2020 -0500

    #139 - Knock down this test.
---
 .../src/test/org/apache/solr/handler/component/TermsComponentTest.java  | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/solr/core/src/test/org/apache/solr/handler/component/TermsComponentTest.java b/solr/core/src/test/org/apache/solr/handler/component/TermsComponentTest.java
index 660498a..7103659 100644
--- a/solr/core/src/test/org/apache/solr/handler/component/TermsComponentTest.java
+++ b/solr/core/src/test/org/apache/solr/handler/component/TermsComponentTest.java
@@ -484,7 +484,7 @@ public class TermsComponentTest extends SolrTestCaseJ4 {
 
   @Test
   public void testPointField() throws Exception {
-    int nvals = 10000; int maxval = 1000000;
+    int nvals = TEST_NIGHTLY ? 10000 : 1000; int maxval = TEST_NIGHTLY ? 1000000 : 10000;
     // int nvals = 5; int maxval = 2;
     final int vals[] = new int[nvals];
     for (int i=0; i<nvals; i++) {