Skip to content

Commit

Permalink
Fix exception-swallowing code path
Browse files Browse the repository at this point in the history
  • Loading branch information
dandavison committed Aug 26, 2024
1 parent 2343d3a commit 70b466d
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions temporalio/client.py
Original file line number Diff line number Diff line change
Expand Up @@ -5089,8 +5089,7 @@ async def start_workflow(
raise temporalio.exceptions.WorkflowAlreadyStartedError(
input.id, input.workflow, run_id=details.run_id
)
else:
raise
raise
handle: WorkflowHandle[Any, Any] = WorkflowHandle(
self._client,
req.workflow_id,
Expand Down

0 comments on commit 70b466d

Please sign in to comment.