Skip to content

Commit

Permalink
[FIX] Continue when step is empty
Browse files Browse the repository at this point in the history
GitOrigin-RevId: f3cd20de92c176e0852de82f07d2478f3ced5690
  • Loading branch information
johnnygreco committed Nov 13, 2024
1 parent 8abafe6 commit 4c50961
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/gretel_client/navigator/workflow.py
Original file line number Diff line number Diff line change
Expand Up @@ -443,6 +443,8 @@ def _generate_preview(self, verbose: bool = False) -> PreviewResults:
if isinstance(message, WorkflowInterruption):
logger.warning(message.message)
break
if message.step == "":
continue
if current_step != message.step:
current_step = message.step
task_name = self._steps[step_idx].task.replace("_", "-")
Expand Down

0 comments on commit 4c50961

Please sign in to comment.