File tree Expand file tree Collapse file tree 1 file changed +6
-4
lines changed
Expand file tree Collapse file tree 1 file changed +6
-4
lines changed Original file line number Diff line number Diff line change @@ -492,10 +492,12 @@ class JobsRenderer {
492492 logSegment . appendChild ( h ( "div" , Reusable . obj_className_line_stdout , line ) ) ;
493493 renderedLines += 1 ;
494494
495- // Check for 'Finished RsyncUpload for Item'
496- // instead of 'Starting MarkItemAsDone for Item'
497- // because the latter is often missing
498- if ( / ^ F i n i s h e d R s y n c U p l o a d f o r I t e m / . test ( line ) ) {
495+ // Check for several completion messages
496+ // because some of them are often missing
497+ // Ignore error jobs as they get done messages.
498+ if ( ! info . statsElements . jobInfo . classList . contains ( "job-info-fatal" ) &&
499+ ! info . statsElements . jobInfo . classList . contains ( "job-info-aborted" ) &&
500+ / ^ * [ 1 - 9 ] [ 0 - 9 ] * b y t e s \. $ | ^ S t a r t i n g ( R e l a b e l I f A b o r t e d | M a r k I t e m A s D o n e ) f o r I t e m $ | ^ F i n i s h e d ( W g e t D o w n l o a d | M o v e F i l e s | S t o p H e a r t b e a t ) f o r I t e m $ / . test ( line ) ) {
499501 info . statsElements . jobInfo . classList . add ( "job-info-done" ) ;
500502 this . jobs . markFinished ( ident ) ;
501503 } else if (
You can’t perform that action at this time.
0 commit comments