Azure / azure-functions-durable-extension

Durable Task Framework extension for Azure Functions
MIT License
711 stars 263 forks source link

SerializedInput missing in latest Extensions.DurableTask 1.1.0 #2693

Open plamber opened 6 months ago

plamber commented 6 months ago

Description

When upgrading to the package Extensions.DurableTask 1.1.0 from 1.0.4 the SerializedInput property is always null when retrieving code like this.

Microsoft.DurableTask.AsyncPageable<OrchestrationMetadata> metadataResults = client.GetAllInstancesAsync(noFilter);

Expected behavior

The SerializedInput property is filled like in version 1.0.4

Actual behavior

The property SerializedInput is null.

Relevant source code snippets

 Microsoft.DurableTask.AsyncPageable<OrchestrationMetadata> metadataResults = client.GetAllInstancesAsync(noFilter);
 await foreach (OrchestrationMetadata metadata in metadataResults)
        var propertyIsNull = metadata.SerializedInput;

Known workarounds

Rollback to the package 1.0.4

plamber commented 1 month ago

Hello @bachuv and @lilyjma, is this something that is going to be considered in a future release?

Thank you for your feedback, Patrick