Skip to content

Commit

Permalink
Merge 1fc5c7e into 90f0170
Browse files Browse the repository at this point in the history
  • Loading branch information
pritchardn committed Jul 6, 2022
2 parents 90f0170 + 1fc5c7e commit dcd690b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion daliuge-engine/dlg/manager/web/static/js/dm.js
Original file line number Diff line number Diff line change
Expand Up @@ -623,7 +623,7 @@ function startGraphStatusUpdates(serverUrl, sessionId, selectedNode, delay,

var allCompleted = statuses.reduce(function(prevVal, curVal, idx, arr) {
var cur_status = get_status_name(curVal);
return prevVal && (cur_status == 'completed' || cur_status == 'finished' || cur_status == 'error' || cur_status == 'cancelled' || cur_status == 'skipped');
return prevVal && (cur_status == 'completed' || cur_status == 'finished' || cur_status == 'error' || cur_status == 'cancelled' || cur_status == 'skipped' || cur_status == 'deleted' || cur_status == 'expired');
}, true);
if (!allCompleted) {
updateStatesDelayTimer = d3.timer(updateStates, delay);
Expand Down

0 comments on commit dcd690b

Please sign in to comment.