Skip to content

Commit

Permalink
serialize output
Browse files Browse the repository at this point in the history
  • Loading branch information
bachuv committed Nov 1, 2023
1 parent 410dabb commit 1191acb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/WebJobs.Extensions.DurableTask/OutOfProcMiddleware.cs
Original file line number Diff line number Diff line change
Expand Up @@ -274,7 +274,7 @@ public async Task CallActivityAsync(DispatchMiddlewareContext dispatchContext, F
ResponseEvent = new TaskCompletedEvent(
eventId: -1,
taskScheduledId: scheduledEvent.EventId,
result: output),
result: JsonConvert.SerializeObject(output)),
});
return;
}
Expand Down

0 comments on commit 1191acb

Please sign in to comment.