Getting Orchestrator function failed with OOProc schema V2 in azure durable function app
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.
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?