mirror of https://github.com/apache/lucene.git
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:
parent
7b3f632f32
commit
6a1a25868b
|
@ -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)
|
||||
|
|
|
@ -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)
|
||||
{
|
||||
|
|
Loading…
Reference in New Issue