When running the function app we get the following error:
Microsoft.Azure.WebJobs.Extensions.DurableTask: Task hub name '%MyTaskHub%' should contain only alphanumeric characters, start with a letter, and have length between 3 and 45. Microsoft.WindowsAzure.Storage: Invalid container name. Check MSDN for more information about valid container naming.
We have the
hubname
for Durable Functions configured in app settings andlocal.settings.json
. After updating to Durable Functions in isolated worker process mode we run into the problem that variables are no longer allowed forhubname
. The setup is similar to what is documented on msdn: https://learn.microsoft.com/en-us/azure/azure-functions/durable/durable-functions-task-hubs?WT.mc_id=Portal-WebsitesExtension&tabs=csharp#hostjson-functions-20-1When running the function app we get the following error: