Skip to content

Commit

Permalink
Merge pull request #416 from PanDAWMS/tania_dev
Browse files Browse the repository at this point in the history
errorSummary | fix if no jobs found
  • Loading branch information
tkorchug authored Nov 25, 2024
2 parents e8c8fdf + 4a105be commit e7b700d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion core/pandajob/summary_error.py
Original file line number Diff line number Diff line change
Expand Up @@ -164,7 +164,7 @@ def build_error_histograms(jobs, is_wn_instead_of_site=False):
'code': ','.join(sorted(get_job_error_categories(job))),
'task': str(job['jeditaskid']),
'user': job['produsername'],
'request': str(job['reqid']),
'request': str(job['reqid']) if 'reqid' in job else 'None',
})
timestamp_list.append(job['modificationtime'])

Expand Down

0 comments on commit e7b700d

Please sign in to comment.