Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions src/DurableTask.Core/History/ExecutionRewoundEvent.cs
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,12 @@ public ExecutionRewoundEvent(int eventId, string? reason)
this.Reason = reason;
}

// Private ctor for JSON deserialization (required by some storage providers and out-of-proc executors)
ExecutionRewoundEvent()
: base(-1)
{
}
Comment on lines +42 to +46

/// <summary>
/// Gets the event type
/// </summary>
Expand Down
Loading