Azure/durabletask

Quotes added to string

nhuurnink opened this issue · 1 comments

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"
}