Skip to content

Commit d5086ad

Browse files
committed
Retry count is now shown in the dashboard (dashboard/static/js/views/jobs.js)
1 parent d1ea418 commit d5086ad

1 file changed

Lines changed: 4 additions & 0 deletions

File tree

  • mrq/dashboard/static/js/views

mrq/dashboard/static/js/views/jobs.js

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -355,6 +355,10 @@ define(["jquery", "underscore", "views/generic/datatablepage", "models"],functio
355355
display.push("cputime "+String(source.time).substring(0,6)+"s ("+source.switches+" switches)");
356356
}
357357

358+
if (source.retry_count) {
359+
display.push("retried " + String(source.retry_count) + " times");
360+
}
361+
358362
return "<small>" + display.join("<br/>") + "</small>";
359363

360364
} else {

0 commit comments

Comments
 (0)