Skip to content

Commit

Permalink
web: Show job_cancelled in job details
Browse files Browse the repository at this point in the history
  • Loading branch information
donald committed Dec 28, 2023
1 parent 715af81 commit 62e4ef6
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions web/pages/mxq/mxq.in
Original file line number Diff line number Diff line change
Expand Up @@ -571,6 +571,7 @@ sub job {
my %o=%{$sth->fetchrow_hashref('NAME_lc')};

my $job_status_text=job_status($o{'job_status'});
my $job_cancelled = $o{job_cancelled} ? "true" : "false";
my $job_umask_text=sprintf('%03O',$o{job_umask});
my $link_group_id=a({href=>selfurl("/group/$o{group_id}")},$o{group_id});
my $job_argv=escapeHTML(split_cmd($o{job_argv}));
Expand All @@ -586,6 +587,7 @@ sub job {
$out.=<<"EOF";
<pre>
job_status : $job_status_text
job_cancelled : $job_cancelled
job_priority : $o{job_priority}
group_id : $link_group_id
Expand Down

0 comments on commit 62e4ef6

Please sign in to comment.