You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@lucene.apache.org by an...@apache.org on 2015/07/01 13:16:34 UTC

svn commit: r1688621 - in /lucene/dev/branches/branch_5x: ./ solr/ solr/CHANGES.txt solr/core/ solr/core/src/test/org/apache/solr/core/TestConfigOverlay.java

Author: andyetitmoves
Date: Wed Jul  1 11:16:33 2015
New Revision: 1688621

URL: http://svn.apache.org/r1688621
Log:
SOLR-7740: Fix typo bug with TestConfigOverlay

Modified:
    lucene/dev/branches/branch_5x/   (props changed)
    lucene/dev/branches/branch_5x/solr/   (props changed)
    lucene/dev/branches/branch_5x/solr/CHANGES.txt   (contents, props changed)
    lucene/dev/branches/branch_5x/solr/core/   (props changed)
    lucene/dev/branches/branch_5x/solr/core/src/test/org/apache/solr/core/TestConfigOverlay.java

Modified: lucene/dev/branches/branch_5x/solr/CHANGES.txt
URL: http://svn.apache.org/viewvc/lucene/dev/branches/branch_5x/solr/CHANGES.txt?rev=1688621&r1=1688620&r2=1688621&view=diff
==============================================================================
--- lucene/dev/branches/branch_5x/solr/CHANGES.txt (original)
+++ lucene/dev/branches/branch_5x/solr/CHANGES.txt Wed Jul  1 11:16:33 2015
@@ -210,6 +210,7 @@ Other Changes
 
 * SOLR-7712: fixed test to account for aggregate floating point precision loss (hossman)
 
+* SOLR-7740: Fix typo bug with TestConfigOverlay (Christine Poerschke via Ramkumar Aiyengar)
 
 ==================  5.2.1 ==================
 

Modified: lucene/dev/branches/branch_5x/solr/core/src/test/org/apache/solr/core/TestConfigOverlay.java
URL: http://svn.apache.org/viewvc/lucene/dev/branches/branch_5x/solr/core/src/test/org/apache/solr/core/TestConfigOverlay.java?rev=1688621&r1=1688620&r2=1688621&view=diff
==============================================================================
--- lucene/dev/branches/branch_5x/solr/core/src/test/org/apache/solr/core/TestConfigOverlay.java (original)
+++ lucene/dev/branches/branch_5x/solr/core/src/test/org/apache/solr/core/TestConfigOverlay.java Wed Jul  1 11:16:33 2015
@@ -30,16 +30,16 @@ public class TestConfigOverlay extends L
     assertTrue(isEditableProp("updateHandler/autoCommit/maxDocs", true, null));
     assertTrue(isEditableProp("updateHandler/autoCommit/maxTime", true, null));
     assertTrue(isEditableProp("updateHandler/autoCommit/openSearcher", true, null));
-    assertTrue(isEditableProp("updateHandler/autoCommit/maxDocs", true, null));
-    assertTrue(isEditableProp("updateHandler/autoCommit/maxTime", true, null));
+    assertTrue(isEditableProp("updateHandler/autoSoftCommit/maxDocs", true, null));
+    assertTrue(isEditableProp("updateHandler/autoSoftCommit/maxTime", true, null));
     assertTrue(isEditableProp("updateHandler/commitWithin/softCommit", true, null));
     assertTrue(isEditableProp("updateHandler/indexWriter/closeWaitsForMerges", true, null));
 
     assertTrue(isEditableProp("updateHandler.autoCommit.maxDocs", false, null));
     assertTrue(isEditableProp("updateHandler.autoCommit.maxTime", false, null));
     assertTrue(isEditableProp("updateHandler.autoCommit.openSearcher", false, null));
-    assertTrue(isEditableProp("updateHandler.autoCommit.maxDocs", false, null));
-    assertTrue(isEditableProp("updateHandler.autoCommit.maxTime", false, null));
+    assertTrue(isEditableProp("updateHandler.autoSoftCommit.maxDocs", false, null));
+    assertTrue(isEditableProp("updateHandler.autoSoftCommit.maxTime", false, null));
     assertTrue(isEditableProp("updateHandler.commitWithin.softCommit", false, null));
     assertTrue(isEditableProp("updateHandler.indexWriter.closeWaitsForMerges", false, null));
     assertTrue(isEditableProp("query.useFilterForSortedQuery", false, null));