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 3f54f80 commit 861f0aaCopy full SHA for 861f0aa
src/WebJobs.Script.WebHost/WebHooks/WebJobsSdkExtensionHookProvider.cs
@@ -63,7 +63,7 @@ private Uri GetExtensionWebHookRoute(string extensionName)
63
var scheme = isLocalhost ? "http" : "https";
64
string keyValue = GetOrCreateExtensionKey(extensionName).GetAwaiter().GetResult();
65
66
- return new Uri($"{scheme}://{hostName}/webhookextensions/handler/{extensionName}?code={keyValue}");
+ return new Uri($"{scheme}://{hostName}/runtime/webhooks/{extensionName}?code={keyValue}");
67
}
68
69
private async Task<string> GetOrCreateExtensionKey(string extensionName)
0 commit comments