@member45232 Thanks for reaching out. This looks like the know issue. Can you please confirm if you have python environment with host version 4.9.0 and up and have libraries like <<packagename>> in your requirements.txt may hit this error.
Result: Failure Exception: ModuleNotFoundError: No module named 'packagename'. Please check the requirements.txt file for the missing module.
**Mitigation: **
To mitigate, the recommendation is to do any one of the following:
- Setting the PYTHON_ISOLATE_WORKER_DEPENDENCIES app setting to 0 as described in the documentation here
- Pinning the host version to 4.8.0. https://learn.microsoft.com/en-us/azure/azure-functions/set-runtime-version?tabs=azurecli#manual-version-updates-on-linux
az functionapp config set \
-g <resource_group> \
-n <function_app_name> \
--subscription <subscription_id> \
--linux-fx-version "DOCKER|mcr.microsoft.com/azure-functions/python:4.8.0-python3.9-appservice"
The product team is working on fixing this issue. Let me know if the above helps you to resolve the issue.