I have an Azure Function App running .Net Framework (target framework 4.6.1) but is now failing. Per documentation, the Function was set up as .Net Core and then downgraded to v1 to support Framework. The Function worked after I initially published it from Visual Studio, but soon stopped working.
I get a 500 error when I try to hit the function from my mobile app. When I go to a function within the app in Azure Portal, the following error appears:
The function runtime is unable to start.
I have restarted the Function App, as well as actually stopping and then starting again. I tried to re-publish the code from Visual Studio, but that fails, saying:
The attempt to publish the ZIP file through
https://***.scm.azurewebsites.net/api/zipdeploy
failed with HTTP status code InternalServerError.
Application Insights had been working on it previously, but it isn't showing any network requests anymore.
Is there anywhere to go to get better diagnostics? Every error I've seen has been vague. Additionally, are there known issues with running Azure Function apps on .Net Framework 4.6.1 that I need to be aware of?