You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@lucene.apache.org by ho...@apache.org on 2017/01/09 23:36:47 UTC

[2/2] lucene-solr:jira/solr-5944: move nocommit comment to the relevant assert that fails

move nocommit comment to the relevant assert that fails


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

Branch: refs/heads/jira/solr-5944
Commit: 5e7c2543b15a8eb5ff43870cdd1adaea7c532468
Parents: 36ce044
Author: Chris Hostetter <ho...@apache.org>
Authored: Mon Jan 9 16:36:37 2017 -0700
Committer: Chris Hostetter <ho...@apache.org>
Committed: Mon Jan 9 16:36:37 2017 -0700

----------------------------------------------------------------------
 solr/core/src/test/org/apache/solr/search/TestRecovery.java | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/lucene-solr/blob/5e7c2543/solr/core/src/test/org/apache/solr/search/TestRecovery.java
----------------------------------------------------------------------
diff --git a/solr/core/src/test/org/apache/solr/search/TestRecovery.java b/solr/core/src/test/org/apache/solr/search/TestRecovery.java
index 00d8906..2782ef9 100644
--- a/solr/core/src/test/org/apache/solr/search/TestRecovery.java
+++ b/solr/core/src/test/org/apache/solr/search/TestRecovery.java
@@ -1121,7 +1121,6 @@ public class TestRecovery extends SolrTestCaseJ4 {
 
   @Test
   public void testLogReplayWithInPlaceUpdatesAndDeletes() throws Exception {
-    // nocommit: Fails due to SOLR-9941
 
     try {
 
@@ -1196,7 +1195,7 @@ public class TestRecovery extends SolrTestCaseJ4 {
       assertTrue(logReplayFinish.tryAcquire(timeout, TimeUnit.SECONDS));
       assertJQ(req("q","val_i_dvo:202") ,"/response/numFound==1"); // assert that in-place update is retained
 
-      assertJQ(req("q","*:*") ,"/response/numFound==2");
+      assertJQ(req("q","*:*") ,"/response/numFound==2");     // nocommit: Fails due to SOLR-9941
       assertJQ(req("q","id:A2") ,"/response/numFound==0");
       assertJQ(req("q","id:A3") ,"/response/numFound==0");
       assertJQ(req("q","id:A4") ,"/response/numFound==1");