Replace ScheduleOutcomesAsync with CompleteActivityWithOutcomesAsync (#5212)
In the FlowFork.cs file of the Elsa.Workflows.Core module, the method ScheduleOutcomesAsync has been replaced with CompleteActivityWithOutcomesAsync. This fixes the issue of the activity not completing. Fixes #5204
This commit is contained in:
parent
b589147258
commit
c73cd05d78
|
|
@ -33,6 +33,6 @@ public class FlowFork : Activity
|
|||
{
|
||||
var outcomes = Branches.GetOrDefault(context)?.ToArray() ?? ["Done"];
|
||||
|
||||
await context.ScheduleOutcomesAsync(outcomes);
|
||||
await context.CompleteActivityWithOutcomesAsync(outcomes);
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue