Skip to content

Commit

Permalink
Change ActivityKind from Job to Task in BulkDispatchWorkflows
Browse files Browse the repository at this point in the history
The ActivityKind property in BulkDispatchWorkflows class has been changed from Job to Task. This updates the type of activity associated with the BulkDispatchWorkflows process within the Elsa workflow runtime module.
  • Loading branch information
sfmskywalker committed Dec 17, 2023
1 parent fc878a4 commit 916256e
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ namespace Elsa.Workflows.Runtime.Activities;
/// <summary>
/// Creates new workflow instances of the specified workflow for each item in the data source and dispatches them for execution.
/// </summary>
[Activity("Elsa", "Composition", "Create new workflow instances for each item in the data source and dispatch them for execution.", Kind = ActivityKind.Job)]
[Activity("Elsa", "Composition", "Create new workflow instances for each item in the data source and dispatch them for execution.", Kind = ActivityKind.Task)]
[FlowNode("Finished", "Canceled", "Done")]
[UsedImplicitly]
public class BulkDispatchWorkflows : Activity
Expand Down

0 comments on commit 916256e

Please sign in to comment.