I'm running an Azure function in Azure, the function gets triggered by a file being uploaded to blob storage container. The function detects the new blob (file) but then outputs the following message - Did not find any initialized language workers
.
Setup:
- Azure function using Python 3.6.8
- Running on linux machine
- Built and deployed using azure devops (for ci/cd capability)
- Blob Trigger Function
I have run the code locally using the same blob storage container, the same configuration values and the local instance of the azure function works as expected.
The functions core purpose is to read in the .xml file uploaded into blob storage container and parse and transform the data in the xml to be stored as Json in cosmos db.
I expect the process to complete like on my local instance with my documents in cosmos db, but it looks like the function doesn't actually get to process anything due to the following error:
Did not find any initialized language workers
FUNCTIONS_WORKER_RUNTIME
setting. Can you check in yourlocal.settings.json
file for this setting and settings in Azure Portal? Ref: docs.microsoft.com/en-us/azure/azure-functions/…. – Gaurav Mantri