Skip to content

Commit beadef8

Browse files
author
Alex
committed
Fix issue danielgerlag#926
1 parent f2ac125 commit beadef8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/WorkflowCore/Services/SyncWorkflowRunner.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ public async Task<WorkflowInstance> RunWorkflowSync<TData>(string workflowId, in
8787
{
8888
while ((wf.Status == WorkflowStatus.Runnable) && !token.IsCancellationRequested)
8989
{
90-
await _executor.Execute(wf);
90+
await _executor.Execute(wf, token);
9191
if (persistSate)
9292
await _persistenceStore.PersistWorkflow(wf, token);
9393
}

0 commit comments

Comments
 (0)