Skip to content

Commit

Permalink
Remove debug
Browse files Browse the repository at this point in the history
  • Loading branch information
nathandf committed Sep 6, 2024
1 parent 5f2ee22 commit d02b932
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions src/engine/src/core/workflows/WorkflowExecutor.py
Original file line number Diff line number Diff line change
Expand Up @@ -401,12 +401,10 @@ def _handle_task_terminal_state(self, task, task_result):

# Run the handle_pipeline_terminal_state callback if all tasks are complete.
if len(self.state.tasks) == len(self.state.finished):
print("*********** PIPELINE COMPLETED")
self._handle_pipeline_terminal_state(event=PIPELINE_COMPLETED)
return []

if task_result.status > 0 and task.can_fail == False:
print("*********** PIPELINE FAILED")
self._handle_pipeline_terminal_state(event=PIPELINE_FAILED)
return []

Expand Down

0 comments on commit d02b932

Please sign in to comment.