We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent aefb9f6 commit 01e37faCopy full SHA for 01e37fa
src/WebJobs.Script.WebHost/App_Start/AutofacBootstrap.cs
@@ -48,7 +48,7 @@ internal static void Initialize(ContainerBuilder builder)
48
var section = (MachineKeySection)ConfigurationManager.GetSection("system.web/machineKey");
49
if (section.Decryption != "Auto" && section.ValidationKey.Length >= 32)
50
{
51
- scriptHostConfig.HostConfig.HostId = section.ValidationKey.Substring(0, 32);
+ scriptHostConfig.HostConfig.HostId = section.ValidationKey.Substring(0, 32).ToLowerInvariant();
52
}
53
54
WebScriptHostManager scriptHostManager = new WebScriptHostManager(scriptHostConfig);
0 commit comments