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 2012/03/27 19:50:37 UTC

svn commit: r1305930 - in /lucene/dev/branches/branch_3x: ./ lucene/ lucene/core/src/ lucene/core/src/test/org/apache/lucene/analysis/ solr/ solr/CHANGES.txt solr/contrib/dataimporthandler/src/java/org/apache/solr/handler/dataimport/DocBuilder.java

Author: hossman
Date: Tue Mar 27 17:50:36 2012
New Revision: 1305930

URL: http://svn.apache.org/viewvc?rev=1305930&view=rev
Log:
SOLR-3046: Fix whitespace typo in DIH response "Time taken" (merge r1305929 from trunk)

Modified:
    lucene/dev/branches/branch_3x/   (props changed)
    lucene/dev/branches/branch_3x/lucene/   (props changed)
    lucene/dev/branches/branch_3x/lucene/core/src/   (props changed)
    lucene/dev/branches/branch_3x/lucene/core/src/test/org/apache/lucene/analysis/   (props changed)
    lucene/dev/branches/branch_3x/solr/   (props changed)
    lucene/dev/branches/branch_3x/solr/CHANGES.txt
    lucene/dev/branches/branch_3x/solr/contrib/dataimporthandler/src/java/org/apache/solr/handler/dataimport/DocBuilder.java

Modified: lucene/dev/branches/branch_3x/solr/CHANGES.txt
URL: http://svn.apache.org/viewvc/lucene/dev/branches/branch_3x/solr/CHANGES.txt?rev=1305930&r1=1305929&r2=1305930&view=diff
==============================================================================
--- lucene/dev/branches/branch_3x/solr/CHANGES.txt (original)
+++ lucene/dev/branches/branch_3x/solr/CHANGES.txt Tue Mar 27 17:50:36 2012
@@ -295,6 +295,8 @@ Bug Fixes
   clear about when SolrCores are being created, and stop misleading people 
   about SolrCore instanceDir's being the "Solr Home Dir" (hossman)
 
+* SOLR-3046: Fix whitespace typo in DIH response "Time taken" (hossman)
+
 Other Changes
 ----------------------
 * SOLR-2922: Upgrade commons-io and commons-lang to 2.1 and 2.6, respectively. (koji)

Modified: lucene/dev/branches/branch_3x/solr/contrib/dataimporthandler/src/java/org/apache/solr/handler/dataimport/DocBuilder.java
URL: http://svn.apache.org/viewvc/lucene/dev/branches/branch_3x/solr/contrib/dataimporthandler/src/java/org/apache/solr/handler/dataimport/DocBuilder.java?rev=1305930&r1=1305929&r2=1305930&view=diff
==============================================================================
--- lucene/dev/branches/branch_3x/solr/contrib/dataimporthandler/src/java/org/apache/solr/handler/dataimport/DocBuilder.java (original)
+++ lucene/dev/branches/branch_3x/solr/contrib/dataimporthandler/src/java/org/apache/solr/handler/dataimport/DocBuilder.java Tue Mar 27 17:50:36 2012
@@ -257,7 +257,7 @@ public class DocBuilder {
 	    if(importStatistics.failedDocCount.get() > 0)
 	      statusMessages.put(DataImporter.MSG.TOTAL_FAILED_DOCS, ""+ importStatistics.failedDocCount.get());
 	
-	    statusMessages.put("Time taken ", getTimeElapsedSince(startTime.get()));
+	    statusMessages.put("Time taken", getTimeElapsedSince(startTime.get()));
 	    LOG.info("Time taken = " + getTimeElapsedSince(startTime.get()));
 	  } catch(Exception e)
 		{