Skip to content

Commit

Permalink
Change WorkflowVersion property in WorkflowExecutionLogRecord
Browse files Browse the repository at this point in the history
Modified the WorkflowVersion property from init-only to settable. This adjustment allows for updating the workflow version post-initialization, providing greater flexibility in handling workflow instances.
  • Loading branch information
sfmskywalker committed Sep 27, 2024
1 parent 750b480 commit 3baacc8
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ public class WorkflowExecutionLogRecord : Entity, ILogRecord
/// <summary>
/// The version of the workflow definition.
/// </summary>
public int WorkflowVersion { get; init; }
public int WorkflowVersion { get; set; }

/// <summary>
/// The ID of the activity instance.
Expand Down

0 comments on commit 3baacc8

Please sign in to comment.