Skip to content

Commit

Permalink
Merge pull request #6099 from cylc/8.2.x-sync
Browse files Browse the repository at this point in the history
🤖 Merge 8.2.x-sync into master
  • Loading branch information
oliver-sanders authored May 14, 2024
2 parents 877388d + 877f96e commit 6cc614f
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
1 change: 1 addition & 0 deletions changes.d/6096.fix.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Fixed bug that caused graph arrows to go missing in the GUI when suicide triggers are present.
6 changes: 4 additions & 2 deletions cylc/flow/data_store_mgr.py
Original file line number Diff line number Diff line change
Expand Up @@ -1975,10 +1975,12 @@ def prune_pruned_updated_nodes(self):
node = tp_added[tp_id]
else:
continue
for j_id in list(node.jobs) + list(tp_updated[tp_id].jobs):
update_node = tp_updated.pop(tp_id)
for j_id in list(node.jobs) + list(update_node.jobs):
if j_id in j_updated:
del j_updated[j_id]
del tp_updated[tp_id]
self.n_window_edges.difference_update(update_node.edges)
self.deltas[EDGES].pruned.extend(update_node.edges)
self.pruned_task_proxies.clear()

def update_family_proxies(self):
Expand Down

0 comments on commit 6cc614f

Please sign in to comment.