Skip to content

Commit

Permalink
Added missing workflow status branch (#1348)
Browse files Browse the repository at this point in the history
Signed-off-by: Whit Waldo <[email protected]>
  • Loading branch information
WhitWaldo authored Sep 13, 2024
1 parent 74f6b01 commit 3d1fa01
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/Dapr.Workflow/WorkflowState.cs
Original file line number Diff line number Diff line change
Expand Up @@ -84,6 +84,8 @@ public WorkflowRuntimeStatus RuntimeStatus
return WorkflowRuntimeStatus.Terminated;
case OrchestrationRuntimeStatus.Pending:
return WorkflowRuntimeStatus.Pending;
case OrchestrationRuntimeStatus.Suspended:
return WorkflowRuntimeStatus.Suspended;
default:
return WorkflowRuntimeStatus.Unknown;
}
Expand Down

0 comments on commit 3d1fa01

Please sign in to comment.