Skip to content

Commit

Permalink
Merge branch 'master' into get-metadata-fix
Browse files Browse the repository at this point in the history
  • Loading branch information
WhitWaldo authored Oct 6, 2024
2 parents bc62fd5 + 3d1fa01 commit f11644e
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 f11644e

Please sign in to comment.