Make correlationId parameter non-optional in WorkflowExecutionContext constructor.

This commit is contained in:
Sipke Schoorstra 2025-12-29 20:10:36 +01:00
parent 79a64e90fd
commit fa798b0a47
No known key found for this signature in database
GPG key ID: 5C10502B28A4268F

View file

@ -115,7 +115,7 @@ public partial class WorkflowExecutionContext : IExecutionContext
IServiceProvider serviceProvider,
WorkflowGraph workflowGraph,
string id,
string? correlationId = null,
string? correlationId,
string? parentWorkflowInstanceId = null,
IDictionary<string, object>? input = null,
IDictionary<string, object>? properties = null,