Skip to content

Commit

Permalink
HPCC-17216 Output each statistic on a single line (in batch mode)
Browse files Browse the repository at this point in the history
Signed-off-by: Gavin Halliday <gavin.halliday@lexisnexis.com>
  • Loading branch information
ghalliday committed Mar 15, 2017
1 parent bc5a07c commit 690a5e8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion common/workunit/workunit.cpp
Expand Up @@ -9031,7 +9031,7 @@ extern WORKUNIT_API void exportWorkUnitToXMLFile(const IConstWorkUnit *wu, const
IPropertyTree * stats = p->queryPropTree("Statistics");
if (stats)
{
saveXML(statsFilename, stats, 0, XML_Format|XML_SortTags|extraXmlFlags);
saveXML(statsFilename, stats, 0, (XML_Format|XML_SortTags|extraXmlFlags) & ~XML_LineBreakAttributes);
p->removeProp("Statistics");
}
}
Expand Down

0 comments on commit 690a5e8

Please sign in to comment.