File tree Expand file tree Collapse file tree 2 files changed +3
-2
lines changed Expand file tree Collapse file tree 2 files changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -370,14 +370,15 @@ def _bypass() -> None:
370370 ):
371371 # Handle as a non-failure as exception is a propagation of graceful termination.
372372 publish_utils .publish_stopped_step_run (step_run .id )
373+
373374 else :
374375 logger .error (
375376 "Failed to run step `%s`: %s" ,
376377 self ._invocation_id ,
377378 e ,
378379 )
379380 publish_utils .publish_failed_step_run (step_run .id )
380- raise
381+ raise
381382 else :
382383 logger .info (
383384 f"Using cached version of step `{ self ._invocation_id } `."
Original file line number Diff line number Diff line change @@ -899,7 +899,7 @@ def _check_if_run_in_progress(self) -> bool:
899899
900900 steps_statuses = {
901901 name : ExecutionStatus (status )
902- for name , status in step_run_statuses
902+ for _ , name , status in step_run_statuses
903903 }
904904
905905 for step_name , _ in step_dict .items ():
You can’t perform that action at this time.
0 commit comments