Skip to content

Commit

Permalink
fix for workflowId
Browse files Browse the repository at this point in the history
Signed-off-by: Neil South <[email protected]>
  • Loading branch information
neildsouth committed May 22, 2024
1 parent 6713436 commit 4eb56e4
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -180,7 +180,7 @@ public async Task<bool> ProcessPayload(WorkflowRequestEvent message, Payload pay
{
await ProcessFirstWorkflowTask(workflowInstance, message.CorrelationId, payload);
}
payload.WorkflowInstanceIds = workflowInstances.Select(w => w.Id).ToList();
payload.WorkflowInstanceIds = workflowInstances.Select(w => w.WorkflowId).ToList();
payload.TriggeredWorkflowNames = workflowInstances.Select(w => w.WorkflowName).ToList();

return true;
Expand Down

0 comments on commit 4eb56e4

Please sign in to comment.