Skip to content

Commit

Permalink
Undo incorrect change
Browse files Browse the repository at this point in the history
  • Loading branch information
cgillum committed Dec 16, 2023
1 parent 792f0c4 commit 43437b7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/DurableTask.SqlServer/SqlUtils.cs
Original file line number Diff line number Diff line change
Expand Up @@ -137,7 +137,7 @@ public static HistoryEvent GetHistoryEvent(this DbDataReader reader, bool isOrch
historyEvent = new SubOrchestrationInstanceCompletedEvent(eventId: -1, GetTaskId(reader), GetPayloadText(reader));
break;
case EventType.SubOrchestrationInstanceCreated:
historyEvent = new SubOrchestrationInstanceCreatedEvent(eventId: -1)
historyEvent = new SubOrchestrationInstanceCreatedEvent(eventId)
{
Input = GetPayloadText(reader),
InstanceId = "", // Placeholder - shouldn't technically be needed (adding it requires a SQL schema change)
Expand Down

0 comments on commit 43437b7

Please sign in to comment.