Skip to content

Commit

Permalink
Merge pull request #18369 from mckellyln/hpcc-31385
Browse files Browse the repository at this point in the history
HPCC-31385 Roxie complete line elapsed time not correct for longer WU queries

Reviewed-by: Gavin Halliday <ghalliday@hpccsystems.com>
Merged-by: Gavin Halliday <ghalliday@hpccsystems.com>
  • Loading branch information
ghalliday authored Mar 5, 2024
2 parents 8295209 + 07820be commit 3d41fdd
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 @@ -1316,7 +1316,7 @@ class RoxieWorkUnitWorker : public RoxieQueryWorker
reportUnknownException(wu, logctx);
}
#endif
unsigned elapsedNs = nsTick() - startNs;
stat_type elapsedNs = nsTick() - startNs;
unsigned elapsedMs = nanoToMilli(elapsedNs);
noteQuery(failed, elapsedMs, priority);
queryFactory->noteQuery(startTime, failed, elapsedMs, memused, agentsReplyLen, 0);
Expand Down

0 comments on commit 3d41fdd

Please sign in to comment.