@akhil reddy Thanks for reaching here! Could you please elaborate what error you are receiving?
Suggest you to run the Azure Functions Diagnostics to quickly diagnose and solve function app problems.
To identify the actual cause of your issue, you need to get the Python project files that run on your function app. If you don't have the project files on your local computer, you can get them in one of the following ways:
- If the function app has a
WEBSITE_RUN_FROM_PACKAGE
app setting and its value is a URL, download the file by copying and pasting the URL into your browser. - If the function app has
WEBSITE_RUN_FROM_PACKAGE
and it's set to 1, go to https://<app-name>.scm.azurewebsites.net/api/vfs/data/SitePackages and download the file from the latest href URL. - If the function app doesn't have either of the preceding app settings, go to https://<app-name>.scm.azurewebsites.net/api/settings and find the URL under
SCM_RUN_FROM_PACKAGE
. Download the file by copying and pasting the URL into your browser. - If suggestions resolve the issue, go to https://<app-name>.scm.azurewebsites.net/DebugConsole and view the content under /home/site/wwwroot. Then refer this article which helps you to troubleshoot potential causes of this error by inspecting your function app's content, identifying the root cause, and resolving the specific issue. Let us know.