Skip to content

Commit 369d19e

Browse files
authored
Merge pull request danielgerlag#927 from Treno1/master
Fix issue danielgerlag#926
2 parents ea98695 + beadef8 commit 369d19e

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)