All of our Azure function apps are failing to execute manually from the Azure Portal. When we go to do Test/Run for any of our functions in any function app, we get the following error:
Http response code: 0 Unknown HTTP error
Http response content: Error: {"message":"Failed to fetch","stack":"TypeError: Failed to fetch\n at https://portal.azure.com/Content/Dynamic/fOu-tO_OJd0O.js:226:23724","isError":true}
All of our functions are configured the following way:
- FUNCTIONS_EXTENSION_VERSION = ~4
- FUNCTIONS_WORKER_RUNTIME = dotnet-isolated
- CORS -> Allowed Origins = https://portal.azure.com
- All C# code is .net 8
Executing manually from the Azure portal was working a week or two ago, and we've not made any changes that we can think of. Any ideas?





