Azure / durabletask

Durable Task Framework allows users to write long running persistent workflows in C# using the async/await capabilities.
Apache License 2.0
1.47k stars 287 forks source link

Quotes added to string #1022

Closed nhuurnink closed 6 months ago

nhuurnink commented 6 months ago

After upgrading to 1.1.0, my durable functions break. The reason is:

string device = "test";
batchTasks.Add(context.CallActivityAsync(nameof(ProcessDeviceIdAct), deviceId));

When running:

public Task ProcessDeviceIdAct([ActivityTrigger] string deviceId)
{
 // deviceId contains quotes: \"test\", instead of simply "test"
}
jviau commented 6 months ago

Duplicate of https://github.com/Azure/azure-functions-durable-extension/issues/2674