-
Notifications
You must be signed in to change notification settings - Fork 272
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
TaskOrchestrationContext GetInput Returns Null #2577
Comments
+1 |
The fix has been published and will be available here: https://www.nuget.org/packages/Microsoft.Azure.WebJobs.Extensions.DurableTask/2.11.2 When using dotnet isolated ( |
Primitive types seems working well, whereas passing object type throws in deserialization.
|
@recumbented: Thanks for the report; the team is working on a hotfix now. |
Description
After updating the Nuget package "Microsoft.Azure.Functions.Worker.Extensions.DurableTask" from 1.0.2 to 1.0.3, GetInput returns null.
await starter.ScheduleNewOrchestrationInstanceAsync("FuntionName", processingData);
[Function("FuntionName")]
public async Task ProcessOcrTaskFunction([OrchestrationTrigger] TaskOrchestrationContext context)
{
var processingData= context.GetInput(); //Returns Null
}
The text was updated successfully, but these errors were encountered: