Azure – Strange bevahiour of Durable functions in .NET 8.0 Isolated with activityFunctions
I am having very bad experiencie with durable functions, So the case is that I have the following code: public async Task RunOrchestrator([OrchestrationTrigger] TaskOrchestrationContext context, string input) { int limit = 200; int offset = 0; bool isLastPage = false;…