Skip to content

Commit d3625c1

Browse files
committed
Fix exception-swallowing code path
1 parent 927abdc commit d3625c1

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

temporalio/client.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5089,6 +5089,8 @@ async def start_workflow(
50895089
raise temporalio.exceptions.WorkflowAlreadyStartedError(
50905090
input.id, input.workflow, run_id=details.run_id
50915091
)
5092+
else:
5093+
raise
50925094
else:
50935095
raise
50945096
handle: WorkflowHandle[Any, Any] = WorkflowHandle(

0 commit comments

Comments
 (0)