SOLR-3046: Fix whitespace typo in DIH response "Time taken"

git-svn-id: https://svn.apache.org/repos/asf/lucene/dev/trunk@1305929 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Chris M. Hostetter 2012-03-27 17:48:35 +00:00
parent 7b3f632f32
commit 6a1a25868b
2 changed files with 3 additions and 1 deletions

View File

@ -738,6 +738,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)

View File

@ -260,7 +260,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)
{