Closed nhuurnink closed 11 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" }
Duplicate of https://github.com/Azure/azure-functions-durable-extension/issues/2674
After upgrading to 1.1.0, my durable functions break. The reason is:
When running: