An Azure service that provides an event-driven serverless compute platform.
Hello Cameron !
Thank you for posting on Microsoft Learn Q&A.
The log means the host expected python because of your app setting but didn’t see any python functions when it indexed the app.
It is either a runtime issue so in your function app under configuration, you need to make sure that :
- FUNCTIONS_WORKER_RUNTIME = python
- FUNCTIONS_EXTENSION_VERSION = ~4
On Linux, the Stack shows Python (3.9/3.10/3.11/3.12 as supported). If you created the app as a .NET/Node app by mistake, the host won’t see Python functions. https://docs.azure.cn/en-us/azure-functions/errors-diagnostics/diagnostic-events/azfd0011
Or the host looks under /home/site/wwwroot for host.json and your function folders and each function for v1 model must have a folder with init and a function.json and for the v2 Python model you still need your files at the root, but not per-function function.json.