microsoft / DurableFunctionsMonitor

A monitoring/debugging UI tool for Azure Durable Functions

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

[Isolated] Raising events does not work

scale-tone opened this issue · comments

DfMon correctly parses incoming JSON and successfully passes a JObject to RaiseEventAsync().
Then somewhere inside each field in that JObject gets converted into an array, which on the Function side then results in something like:

System.Private.CoreLib: Exception while executing function: DurableFunctionsOrchestrationCSharp1. Newtonsoft.Json: Unexpected character encountered while parsing value: [. Path 'Param1', line 1, position 11.

when that event gets processed.

Need to investigate.