Getting Orchestrator function failed with OOProc schema V2 in azure durable function app

Nirali Shah 156 Reputation points
2025-04-14T16:05:57.55+00:00

We have created azure durable function app. In this, we are getting Orchestrator function failed with OOProc schema V2, expected actions array to be of length 1 in outer layer but got size: 2. Attached screenshot for your reference.

User's image After successful exection of Eternal Orchestrator function the status of execution display Failed though it continue as new and execute again but status is still failed for all the exection. Here, is the code block that we have used to implement eternal orchestration mechanism.

next_check = context.current_utc_datetime + \
        timedelta(minutes=export_schedule_minutes)
yield context.create_timer(next_check)
context.continue_as_new(None)

The function app is running on a Linux Consumption plan. Can anyone suggest the solution for this or any workaround to avoid this error?

Azure Functions
Azure Functions
An Azure service that provides an event-driven serverless compute platform.
5,867 questions
{count} votes

Your answer

Answers can be marked as Accepted Answers by the question author, which helps users to know the answer solved the author's problem.