Skip to content

Commit 7f32149

Browse files
committed
Fix exception-swallowing code path
1 parent 9313bd8 commit 7f32149

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

temporalio/client.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5089,8 +5089,7 @@ async def start_workflow(
50895089
raise temporalio.exceptions.WorkflowAlreadyStartedError(
50905090
input.id, input.workflow, run_id=details.run_id
50915091
)
5092-
else:
5093-
raise
5092+
raise
50945093
handle: WorkflowHandle[Any, Any] = WorkflowHandle(
50955094
self._client,
50965095
req.workflow_id,

0 commit comments

Comments
 (0)