-
Notifications
You must be signed in to change notification settings - Fork 447
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Azure Portal can't list functions (Azure Functions runtime is unreachable) #7330
Comments
Hi @kelly-centare , There are a few reasons why you may get this notification, shown in Figure 1 when you try to view your Function list in the Azure portal. One such reason is that you have some kind of network restriction like VNET or Firewall that prevents the Azure Function host from accessing the Azure Storage Account on which your code exists. So, check your endpoints which you have configured in the AzureWebJobsStorage and WEBSITE_CONTENTAZUREFILECONNECTIONSTRING application settings, and make sure there is nothing restricting the Function App host from access. Here is the document to troubleshoot such issues: https://docs.microsoft.com/en-us/azure/azure-functions/functions-recover-storage-account |
The underlying exception seems to be
So this is likely the same issue as #6805 |
This issue has been automatically marked as stale because it has been marked as requiring author feedback but has not had any activity for 4 days. It will be closed if no further activity occurs within 3 days of this comment. |
I have the same error and I think it's caused by adding authentication to the functions. I'm using the Azure Function authentication from Microsoft.Identity.Web (AzureAD/microsoft-identity-web#856). |
Investigative information
Hello, I inherited this application and am admittedly not an Azure expert. I am trying to troubleshoot some behavior and am having a difficult time getting any useable logs in the azure portal for this function. Looking through kudu is not revealing any recent longs (they are all from 2020, despite this function running every 15 minutes successfully).
I have seen similar issues reported (#4855) but my error is a bit different.
Repro steps
Expected behavior
A list of azure functions is displayed that can be drilled into for more info
Actual behavior
I'm seeing an error banner "Azure Functions runtime is unreachable" and no functions listed.
Additional dev console errors below:
2021-04-29T20:22:30.307Z [error][FunctionsListBlade][getFunctions][failed] - Failed to load functions
[WebsitesExtension] 3:22:30 PM FunctionsListBlade FunctionsListBlade: [FunctionsListBlade][getFunctions][failed] - Failed to load functions
ErrorEntity: Code: "BadRequest" Message: "Encountered an error (InternalServerError) from host runtime."
Known workarounds
None known.
I may be able to attach the debugger via Visual Studio and see log output this way.
Related information
Provide any related information
The text was updated successfully, but these errors were encountered: