This commit is contained in:
lda
2026-05-22 22:37:10 +07:00 Verified
parent 9fe9c1452b
commit 1c5cf15815
13 changed files with 89 additions and 41 deletions
+2 -4
View File
@@ -77,8 +77,7 @@ def resume_workflow(
return run
while True:
frame = select_next_frame(run)
if frame is None:
if select_next_frame(run) is None:
status = resolve_no_ready_frames(run)
if status == RunStatus.COMPLETED:
break
@@ -119,8 +118,7 @@ async def resume_workflow_async(
return run
while True:
frame = select_next_frame(run)
if frame is None:
if select_next_frame(run) is None:
status = resolve_no_ready_frames(run)
if status == RunStatus.COMPLETED:
break