Skip to content

Commit

Permalink
Merge pull request #6394 from elsa-workflows/bug/props-propagation
Browse files Browse the repository at this point in the history
Add missing request properties when starting workflow
  • Loading branch information
sfmskywalker authored Feb 10, 2025
2 parents 9a2483b + 2f90bbe commit f445fbe
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,9 @@ public async Task<StartWorkflowResponse> StartWorkflowAsync(StartWorkflowRequest
CorrelationId = request.CorrelationId,
Input = request.Input,
TriggerActivityId = request.TriggerActivityId,
ActivityHandle = request.ActivityHandle
ActivityHandle = request.ActivityHandle,
Properties = request.Properties,
ParentId = request.ParentId
};

var runWorkflowResponse = await workflowClient.CreateAndRunInstanceAsync(createWorkflowInstanceRequest, cancellationToken);
Expand Down

0 comments on commit f445fbe

Please sign in to comment.