Edit:
The issue was with importing functions from a private git repo I install in requirements. If this was commented out, the issue did not persist. However, the new issue is now: Why does it work locally when installing a private git repo and importing it into the function_app.py but it can not be deployed successfully?
Hi all,
I am rather new to Azure Functions and wish to create a blob trigger. Following the guide provided by Microsoft I have successfully deployed a function from VS Code which just moves the uploaded file to another folder.
I am now trying a more complex function which uses some scripts from Github (installed in requirements) and the goal is to process the uploaded file before saving the output in a new folder. It still uses the template provided by Microsoft when using VS code for Blob Triggers, so folder structure is similar.
It works when I test it locally (https://learn.microsoft.com/en-us/azure/azure-functions/functions-event-grid-blob-trigger?pivots=programming-language-python) and all expected functionality is running as expected.
However, when I deploy it, it does not show in the list under functions. Any ideas why this could be? Would appreciate any sort of guidance. :)
Thanks!