-
Notifications
You must be signed in to change notification settings - Fork 33
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
ScheduleNewOrchestrationInstanceAsync() is Not Scheduling an Orchestration #256
ScheduleNewOrchestrationInstanceAsync() is Not Scheduling an Orchestration #256
Comments
I'm experiencing the same issue with v1.1.1. It appears the I need to use v1.1.1 because it contains async versions of methods, such as |
Just stumbled on this issue because I was observing the same behavior. A fix would be much appreciated. |
Sorry to nag, but any update on this? Would really like to be able to use this feature. |
I am using Microsoft.Azure.Functions.Worker.Extensions.DurableTask v1.4, and I am still having this issue. Is there any idea when this will be solved? This has been in P1 for a while without resolution. |
It has been over nine months since this ticket was created noting that ScheduleNewOrchestrationInstanceAsync() is unable to Schedule an orchestration. It makes me wonder if Microsoft is committed to supporting function apps since it is letting this obvious defect linger for so long. Please give the community an update or release the fix! |
Please use Azure/azure-functions-durable-extension#2805 to follow the latest status of this issue. |
Using StartOrchestrationOptions.StartAt property when calling ScheduleNewOrchestrationInstanceAsync() does not schedule an orchestration. Orchestrations always run immediately.
To replicate this issue, create a new Net 8.0 Azure Functions app in Visual Studio and, when prompted, select Function
Durable Functions Orchestrations
. Update all nuget pacakges. Alter theHttpStart
method as follows:The nuget pacakges are as follows:
The orchestration will run immediately. It should run 10 minutes from making the HTTP request.
This issue was discovered in one of our real function applications. When running that app locally, we looked into the storage emulator (Azurite) and could see that the ScheduleStartTime is not being set.
If we downgrade "Microsoft.Azure.Functions.Worker.Extensions.DurableTask" to version "1.0.0" the schedule feature works.
The text was updated successfully, but these errors were encountered: