Skip to content

Commit

Permalink
Update transition ids that were broken after merge
Browse files Browse the repository at this point in the history
  • Loading branch information
maxhoerstr committed Aug 20, 2024
1 parent 54d5757 commit 83bfdfe
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions pfdl_scheduler/petri_net/generator.py
Original file line number Diff line number Diff line change
Expand Up @@ -437,11 +437,11 @@ def generate_condition(
cluster.add_child(cluster_failed)
condition_node.cluster = cluster_passed

cluster = Cluster([passed_id, failed_id, expression_id, finished_id])
cluster = Cluster([passed_uuid, failed_uuid, expression_uuid, finished_uuid])
node.cluster.add_child(cluster)

cluster_passed = Cluster([first_passed_transition_id, second_passed_transition_id])
cluster_failed = Cluster([first_failed_transition_id])
cluster_passed = Cluster([first_passed_transition_uuid, second_passed_transition_uuid])
cluster_failed = Cluster([first_failed_transition_uuid])
cluster.add_child(cluster_passed)
cluster.add_child(cluster_failed)
condition_node.cluster = cluster_passed
Expand Down

0 comments on commit 83bfdfe

Please sign in to comment.