We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f2ac125 commit beadef8Copy full SHA for beadef8
src/WorkflowCore/Services/SyncWorkflowRunner.cs
@@ -87,7 +87,7 @@ public async Task<WorkflowInstance> RunWorkflowSync<TData>(string workflowId, in
87
{
88
while ((wf.Status == WorkflowStatus.Runnable) && !token.IsCancellationRequested)
89
90
- await _executor.Execute(wf);
+ await _executor.Execute(wf, token);
91
if (persistSate)
92
await _persistenceStore.PersistWorkflow(wf, token);
93
}
0 commit comments