Skip to content

Commit

Permalink
data store: include absolute graph edges
Browse files Browse the repository at this point in the history
* Closes #5845
  • Loading branch information
oliver-sanders committed May 14, 2024
1 parent 6cc614f commit 2957e50
Showing 1 changed file with 1 addition and 5 deletions.
6 changes: 1 addition & 5 deletions cylc/flow/taskdef.py
Original file line number Diff line number Diff line change
Expand Up @@ -101,11 +101,7 @@ def generate_graph_parents(tdef, point, taskdefs):
# where (point -Px) does not land on a valid point for woo.
# TODO ideally validation would flag this as an error.
continue
is_abs = (trigger.offset_is_absolute or
trigger.offset_is_from_icp)
if is_abs and parent_point != point:
# If 'foo[^] => bar' only spawn off of '^'.
continue
is_abs = trigger.offset_is_absolute or trigger.offset_is_from_icp
graph_parents[seq].append((parent_name, parent_point, is_abs))

if tdef.sequential:
Expand Down

0 comments on commit 2957e50

Please sign in to comment.