Update .NET isolated templates to make sure we're using async patterns when working with HttpRequestData
kshyju opened this issue · 2 comments
kshyju commented
Update .NET isolated templates to make sure we're using async patterns when working with HttpRequestData
ChristopherL-STCU commented
I just hit this when using the DurableFunctionsOrchestration-CSharp-Isolated. I received the error:
Synchronous operations are disallowed. Call WriteAsync or set AllowSynchronousIO to true instead
After researching this I understood I needed to update CreateCheckStatusResponse
to CreateCheckStatusResponseAsync
.
EntityAdam commented
Ran into this issue with the out-of-box experience. Terrible developer experience.
Track fix here: #1512