我有一个服从子编排器的持久功能,如下所示:
[FunctionName("Trigger")]
public static async Task OrchestrationFunctionFromHttpAsync(
[OrchestrationTrigger]DurableOrchestrationContext context,
ILogger log)
{
var firstResult = await context.CallSubOrchestratorAsync<int>("FirstFunction", null);
var secondResult = await context.CallSubOrchestratorAsync<int>("SecondFunction", null);
}
第一个子编排器成功完成,但执行不返回编排函数,因此第二个子编排器永远不会被调用。我什至如何调查为什么会发生这种情况?