Skip to content

Commit

Permalink
Merge pull request #406 from PanDAWMS/tania_dev
Browse files Browse the repository at this point in the history
core | improve errors page
  • Loading branch information
tkorchug authored Nov 14, 2024
2 parents 7c851ce + 58b3bad commit e1fa677
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion core/views.py
Original file line number Diff line number Diff line change
Expand Up @@ -3101,7 +3101,8 @@ def userDashApi(request, agg=None):
jobs = get_job_list(jquery, error_info=True)
_logger.info('Got jobs: {}'.format(time.time() - request.session['req_init_time']))

errs_by_code, _, _, errs_by_task, _, _ = errorSummaryDict(jobs, is_test_jobs=False, flist=[], sortby='count')
errs_by_code, _, _, errs_by_task, _, _ = errorSummaryDict(
jobs, is_test_jobs=False, flist=[], sortby='count', output=['errsByCount', 'errsByTask', 'errsHist'])
errs_by_task_dict = {}
for err in errs_by_task:
if err['name'] not in errs_by_task_dict:
Expand Down

0 comments on commit e1fa677

Please sign in to comment.