Skip to content

Commit

Permalink
Short-circuit the graph validator
Browse files Browse the repository at this point in the history
  • Loading branch information
nathandf committed Feb 13, 2024
1 parent 8f7935f commit ed05b77
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions src/engine/src/core/workflows/GraphValidator.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ def __init__(self):
self.traversed_edges = []

def has_cycle(self, task_dependency_map, initial_tasks):
return False
self.task_dependency_map = task_dependency_map
initial_task_ids = [initial_task.id for initial_task in initial_tasks]

Expand Down

0 comments on commit ed05b77

Please sign in to comment.