diff --git a/src/WebJobs.Extensions.DurableTask/StandardConnectionInfoProvider.cs b/src/WebJobs.Extensions.DurableTask/StandardConnectionInfoProvider.cs index 36d57874a..ffec8a161 100644 --- a/src/WebJobs.Extensions.DurableTask/StandardConnectionInfoProvider.cs +++ b/src/WebJobs.Extensions.DurableTask/StandardConnectionInfoProvider.cs @@ -45,7 +45,7 @@ private bool IfExists(IConfigurationSection section) public IConfigurationSection Resolve(string name) { // This implementation is a replication of the WEbJobsConnectionInfo Provider used for the internal durable client. - // The original code can be found at: + // The original code can be found at: // https://github.com/Azure/azure-functions-durable-extension/blob/dev/src/WebJobs.Extensions.DurableTask/WebJobsConnectionInfoProvider.cs#L37. // We need to first check the configuration section with the AzureWebJobs prefix, as this is the default name within the Functions app. string prefixedConnectionStringName = "AzureWebJobs" + name;