From c2ca6bd27831d22349c4e6a399affe16e44d6330 Mon Sep 17 00:00:00 2001 From: Stefano Belforte Date: Mon, 9 Dec 2024 11:07:31 +0100 Subject: [PATCH] make it explicit that report is from successful jobs. Fix #5363 (#5364) --- src/python/CRABClient/Commands/report.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/python/CRABClient/Commands/report.py b/src/python/CRABClient/Commands/report.py index 39052a06..4e0962f1 100644 --- a/src/python/CRABClient/Commands/report.py +++ b/src/python/CRABClient/Commands/report.py @@ -212,7 +212,7 @@ def _getNumEvents(jobs, fileType): ## 1) First the summary that depends solely on successfully finished jobs (and ## other general information about the task, but not on failed/running jobs). if not onlyDBSSummary: - self.logger.info("Summary from jobs in status 'finished':") + self.logger.info("Summary from successful jobs (i.e. in status 'finished'):") msg = " Number of files processed: %d" % (numFilesProcessed) msg += "\n Number of events read: %d" % (numEventsRead) msg += "\n Number of events written in EDM files: %d" % (numEventsWritten.get('EDM', 0))