Skip to content

Commit

Permalink
Merge pull request #19231 from ghalliday/issue32867
Browse files Browse the repository at this point in the history
HPCC-32867 Remove invalid comma separator from roxie COMPLETE line

Reviewed-by: Mark Kelly mark.kelly@lexisnexisrisk.com
Merged-by: Gavin Halliday <ghalliday@hpccsystems.com>
  • Loading branch information
ghalliday authored Oct 31, 2024
2 parents b64080e + 072a893 commit 0c52dfc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion roxie/ccd/ccdlistener.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -967,7 +967,7 @@ StringBuffer & ContextLogger::getStats(StringBuffer &s) const
ids.append(slowestActivityIds[i]);
formatStatistic(times, cycle_to_nanosec(slowestActivityTimes[i]), SMeasureTimeNs);
}
s.appendf(", slowestActivities={ ids=[%s] times=[%s] }", ids.str(), times.str());
s.appendf(" slowestActivities={ ids=[%s] times=[%s] }", ids.str(), times.str());
}
return s;
}
Expand Down

0 comments on commit 0c52dfc

Please sign in to comment.