Ben C Robinson
Ben C Robinson
I am also seeing when using the func cli on windows 10 & powershell 7. I encountered this the the V3 of the tools, after upgrading to the V4 it...
Looking in [Azure/azure-functions-host](https://github.com/Azure/azure-functions-host) the method downloading the extension bundle is creating a `HttpClient` without setting the `Timeout` property, so uses the default 100seconds. [public async Task GetExtensionBundlePath()](https://github.com/Azure/azure-functions-host/blob/c6763c0c581ffd803646528211fe6729d6f48671/src/WebJobs.Script/ExtensionBundle/ExtensionBundleManager.cs#L75) in `src/WebJobs.Script/ExtensionBundle/ExtensionBundleManager.cs` ```csharp...
Managed to work around this for now by poking around in the source code then manually downloading the latest extension bundle from: `https://functionscdn.azureedge.net/public/ExtensionBundles/Microsoft.Azure.Functions.ExtensionBundle/3.15.0/Microsoft.Azure.Functions.ExtensionBundle.3.15.0_any-any.zip ` Extracting this file to: `"${env:USERPROFILE}\.azure-functions-core-tools\Functions\ExtensionBundles\Microsoft.Azure.Functions.ExtensionBundle\3.15.0"` And...
I've started seeing this same error as well. But unlike the OP it only appears to happen on my personal MS accounts, my work/school account can sign in ok. I've...